*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#ffffff;
color:#333;
line-height:1.6;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
background:rgba(255,255,255,.82);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border-bottom:1px solid rgba(0,0,0,.05);
z-index:1000;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
}

/* LOGO */

.brand{
display:flex;
align-items:center;
gap:18px;
}

.logo-img{
height:95px;
width:auto;
object-fit:contain;
}

.brand-text h2{
font-size:1.8rem;
font-weight:700;
color:#0F8A8A;
line-height:1;
}

.brand-text p{
font-size:.9rem;
color:#666;
margin-top:5px;
}

/* MENU */

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav a{
text-decoration:none;
color:#0F8A8A;
font-weight:600;
transition:.3s;
}

nav a:hover{
opacity:.7;
}

nav a.active{
color:#F28C28;
font-weight:700;
}

/* MENU MOBILE */

.menu-toggle{
display:none;
font-size:2rem;
cursor:pointer;
color:#0F8A8A;
}

/* HERO */

.hero,
.page-banner{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
position:relative;
padding:0 10%;
background-size:cover;
background-position:center;
}


.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
max-width:900px;
}

.hero-content h1{
font-size:3.8rem;
margin-bottom:20px;
line-height:1.2;
}

.hero-content p{
font-size:1.2rem;
max-width:700px;
margin:auto;
}

/* BOTÕES */

.hero-buttons{
margin-top:35px;
}

.btn{
padding:15px 30px;
background:#2CAFB0;
color:white;
text-decoration:none;
border-radius:40px;
display:inline-block;
font-weight:600;
transition:.3s;
margin:10px;
}

.btn:hover{
transform:translateY(-3px);
}

.secondary{
background:#F28C28;
}

/* SEÇÕES */

.section{
padding:120px 10%;
text-align:center;
}

.section h2{
font-size:2.5rem;
margin-bottom:25px;
color:#0F8A8A;
}

.section p{
max-width:900px;
margin:0 auto 20px;
}

/* IMAGENS */

.section-image{
width:100%;
max-width:700px;
height:350px;
object-fit:cover;
border-radius:20px;
margin:35px auto;
display:block;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* CARDS */

.cards{
display:flex;
gap:25px;
flex-wrap:wrap;
justify-content:center;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
flex:1;
min-width:240px;
max-width:280px;
}

/* TIMELINE */

.timeline{
max-width:900px;
margin:auto;
display:flex;
flex-direction:column;
gap:25px;
margin-top:40px;
}

.timeline-item{
background:white;
padding:30px;
border-left:5px solid #2CAFB0;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,.05);
text-align:left;
}

/* IMPACT SECTION */

.impact-section{
padding:120px 10%;
background:#F8FBFB;
text-align:center;
}

.impact-section h2{
font-size:2.7rem;
color:#0F8A8A;
margin-bottom:20px;
}

/* FORMULÁRIOS */

iframe{
border:none;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
margin-top:30px;
}

/* BOTÕES FLUTUANTES */

.floating-buttons{
position:fixed;
right:20px;
bottom:90px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
align-items:stretch;
}

.floating-inscricao,
.floating-patrocinio{
width:180px;
padding:16px 20px;
border-radius:35px;
text-decoration:none;
font-weight:700;
text-align:center;
color:white;
box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.floating-inscricao{
background:#0F8A8A;
}

.floating-patrocinio{
background:#F28C28;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:180px;
padding:16px 20px;
border-radius:35px;
text-decoration:none;
font-weight:700;
text-align:center;
background:#25D366;
color:white;
box-shadow:0 8px 20px rgba(0,0,0,.15);
z-index:999;
}
/* FOOTER */

footer{
background:#0F8A8A;
color:white;
padding:30px;
text-align:center;
}

/* ANIMAÇÕES */

.hidden{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

/* RESPONSIVO */

@media(max-width:900px){

header{
padding:15px 5%;
}

nav{
flex-direction:row;
justify-content:space-between;
align-items:center;
}

.menu-toggle{
display:block;
}

#nav-links{
position:absolute;
top:100%;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
padding:20px 0;
display:none;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

#nav-links.open{
display:flex;
}

.logo-img{
height:60px;
}

.brand-text h2{
font-size:1.2rem;
}

.brand-text p{
font-size:.75rem;
}

.hero,
.page-banner{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
position:relative;
padding:0 10%;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero-content h1{
font-size:2rem;
}

.hero-content p{
font-size:.95rem;
}

.hero-buttons{
display:flex;
flex-direction:column;
align-items:center;
}

.btn{
width:100%;
max-width:300px;
text-align:center;
}

.section{
padding:80px 6%;
}

.section h2{
font-size:2rem;
}

.section-image{
height:220px;
}

.cards{
flex-direction:column;
}

.card{
width:100%;
max-width:100%;
}

.timeline-item{
padding:20px;
}

.floating-buttons{
right:15px;
bottom:100px;
gap:10px;
}

.floating-inscricao,
.floating-patrocinio{
font-size:.9rem;
padding:12px 14px;
}

.whatsapp{
right:15px;
bottom:25px;
padding:12px 16px;
font-size:.9rem;
}

iframe{
height:900px;
}
}
/* BANNERS INDIVIDUAIS */

.home-banner{
background-image:url('https://media.istockphoto.com/id/612398606/pt/foto/corrida-de-maratona.jpg?b=1&s=612x612&w=0&k=20&c=T6cFYZY8TTYovx82psEickH_JtzWEltDA7kXI9P_jMc=');
}

.movimento-banner{
background-image:url('https://images.pexels.com/photos/2526878/pexels-photo-2526878.jpeg');
}

.corrida-banner{
background-image:url('https://images.pexels.com/photos/10313672/pexels-photo-10313672.jpeg');
}

.marco-banner{
background:linear-gradient(
135deg,
#17BEBB,
#2CAFB0,
#0F8A8A
);
}

.patrocinio-banner{
background-image:url('https://media.istockphoto.com/id/1398651403/pt/foto/handshake-businessmen-are-agreeing-on-business-together-and-shaking-hands-after-a-successful.jpg?b=1&s=612x612&w=0&k=20&c=NhMh0CxJO5bOLOC6HJe_B0yMXfjhuNd2WRRXJW4a9lo=');
}

.experiencias-banner{
background:linear-gradient(
135deg,
#17BEBB,
#55D6D2
);
}

.contato-banner{
background:linear-gradient(
135deg,
#F28C28,
#FF9F43
);
}

.inscricao-banner{
background:linear-gradient(
135deg,
#FFD166,
#FFC300
);
}/* BANNERS INDIVIDUAIS */

.home-banner{
background-image:url('https://media.istockphoto.com/id/612398606/pt/foto/corrida-de-maratona.jpg?b=1&s=612x612&w=0&k=20&c=T6cFYZY8TTYovx82psEickH_JtzWEltDA7kXI9P_jMc=');
}

.movimento-banner{
background-image:url('https://images.pexels.com/photos/2526878/pexels-photo-2526878.jpeg');
}

.corrida-banner{
background-image:url('https://images.pexels.com/photos/10313672/pexels-photo-10313672.jpeg');
}

.marco-banner{
background:linear-gradient(
135deg,
#17BEBB,
#1FBFB8,
#0F8A8A
);
}

.patrocinio-banner{
background-image:url('https://media.istockphoto.com/id/1398651403/pt/foto/handshake-businessmen-are-agreeing-on-business-together-and-shaking-hands-after-a-successful.jpg?b=1&s=612x612&w=0&k=20&c=NhMh0CxJO5bOLOC6HJe_B0yMXfjhuNd2WRRXJW4a9lo=');
}

.experiencias-banner{
background:linear-gradient(
135deg,
#FFD166,
#FFC300
);
}

.contato-banner{
background:linear-gradient(
135deg,
#F28C28,
#FF9F43
);
}

.inscricao-banner{
background:linear-gradient(
135deg,
#2E8B57,
#3CB371
);
}