/* ===================================
   ADJOGOS-SE
   STYLE.CSS
=================================== */

/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#F8FAFC;
    color:#0F172A;
    line-height:1.7;
    overflow-x:hidden;

}

/* ---------- CORES ---------- */

:root{

    --primary:#1E3A8A;
    --secondary:#2563EB;
    --accent:#22C55E;
    --orange:#F97316;

    --dark:#0F172A;

    --gray:#64748B;

    --light:#F8FAFC;

    --white:#FFFFFF;

    --border:#E2E8F0;

}

/* ---------- CONTAINER ---------- */

.container{

    width:min(1180px,92%);
    margin:auto;

}

/* ---------- LINKS ---------- */

a{

    text-decoration:none;
    transition:.3s;

}

img{

    max-width:100%;
    display:block;

}

ul{

    list-style:none;

}

/* ---------- HEADER ---------- */

header{

    position:fixed;

    width:100%;

    top:0;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    z-index:999;

    border-bottom:1px solid rgba(0,0,0,.05);

}

header .container{

    height:72px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{
    height:52px;
    width:auto;
}

/* ---------- MENU ---------- */

nav ul{

    display:flex;

    align-items:center;

    gap:40px;

}

nav a{

    color:var(--dark);

    font-weight:600;

    font-size:15px;

}

nav a:hover{

    color:var(--secondary);

}

/* ---------- BOTÃO MENU ---------- */

.btn-menu{

    background:linear-gradient(135deg,#22C55E,#16A34A);

    color:white;

    padding:14px 24px;

    border-radius:14px;

    box-shadow:0 10px 30px rgba(34,197,94,.3);

}

.btn-menu:hover{

    transform:translateY(-3px);

}

/* ---------- HERO ---------- */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/* ---------- FUNDO ---------- */

.hero-background{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,#3B82F620,transparent 40%),

    radial-gradient(circle at left,#22C55E25,transparent 35%),

    linear-gradient(180deg,#ffffff,#F8FAFC);

}

/* ---------- GRID ---------- */

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;

}

/* ---------- BADGE ---------- */

.badge{

    display:inline-block;

    background:#DBEAFE;

    color:#2563EB;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

/* ---------- TITULO ---------- */

.hero h1{

    font-size:64px;

    line-height:1.08;

    margin-bottom:30px;

    font-weight:800;

}

/* ---------- TEXTO ---------- */

.hero p{

    font-size:20px;

    color:var(--gray);

    margin-bottom:40px;

}

/* ---------- BOTÕES ---------- */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:55px;

}

/* ---------- BOTÃO PRINCIPAL ---------- */

.btn-primary{

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

    color:white;

    padding:18px 34px;

    border-radius:16px;

    font-weight:700;

    box-shadow:0 15px 35px rgba(37,99,235,.30);

}

.btn-primary:hover{

    transform:translateY(-5px);

}

/* ---------- BOTÃO SECUNDÁRIO ---------- */

.btn-secondary{

    border:2px solid #CBD5E1;

    color:var(--dark);

    padding:18px 34px;

    border-radius:16px;

    font-weight:700;

}

.btn-secondary:hover{

    border-color:#2563EB;

    color:#2563EB;

}

/* ---------- ESTATÍSTICAS ---------- */

.numbers{

    display:flex;

    gap:60px;

}

.numbers h2{

    font-size:38px;

    color:#2563EB;

}

.numbers p{

    font-size:15px;

    margin-top:6px;

    color:#64748B;

}

/* ---------- HERO IMAGE ---------- */

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    animation:float 6s ease-in-out infinite;

}

/* ---------- ANIMAÇÃO ---------- */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

/* ---------- SECTION ---------- */

section{

    padding:120px 0;

}

/* ---------- TÍTULOS ---------- */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#2563EB;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    font-size:46px;

    margin:20px auto;

    max-width:850px;

    line-height:1.2;

}

.section-title p{

    color:#64748B;

    max-width:720px;

    margin:auto;

    font-size:18px;

}
/* ===================================================
   PARCEIROS
=================================================== */

.logos{

    background:white;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);

    padding:70px 0;

}

.logos h3{

    text-align:center;
    color:var(--gray);
    margin-bottom:45px;
    font-size:18px;
    font-weight:600;

}

.logo-grid{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;

}

.logo-grid div{

    height:90px;

    border:1px solid var(--border);

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    color:#475569;

    background:white;

    transition:.35s;

}

.logo-grid div:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 40px rgba(0,0,0,.08);

    border-color:#2563EB;

}


/* ===================================================
   SOBRE
=================================================== */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-grid>div:first-child p{

    margin-bottom:28px;

    color:var(--gray);

    font-size:18px;

}

.about-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.mini-card{

    background:white;

    padding:30px;

    border-radius:20px;

    border:1px solid var(--border);

    transition:.35s;

}

.mini-card:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

    box-shadow:0 30px 45px rgba(0,0,0,.08);

}

.mini-card h4{

    margin-bottom:15px;

    font-size:20px;

}

.mini-card p{

    color:var(--gray);

}


/* ===================================================
   BENEFÍCIOS
=================================================== */

#beneficios{

    background:linear-gradient(180deg,#F8FAFC,#EFF6FF);

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.benefit{

    background:white;

    border-radius:24px;

    padding:35px;

    border:1px solid var(--border);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.benefit::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:#DBEAFE;

    right:-50px;

    top:-50px;

    transition:.4s;

}

.benefit:hover::before{

    transform:scale(1.4);

}

.benefit:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 50px rgba(37,99,235,.12);

}

.benefit h3{

    margin-bottom:18px;

    font-size:22px;

    position:relative;

    z-index:2;

}

.benefit p{

    color:var(--gray);

    position:relative;

    z-index:2;

}


/* ===================================================
   CTA ESCURA
=================================================== */

.cta-dark{

    background:linear-gradient(145deg,#0F172A,#1E293B);

    color:white;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta-dark::before{

    content:"";

    position:absolute;

    width:900px;

    height:900px;

    background:radial-gradient(circle,#2563EB30,transparent);

    top:-350px;

    right:-250px;

}

.cta-dark h2{

    font-size:52px;

    margin-bottom:25px;

    position:relative;

}

.cta-dark p{

    max-width:760px;

    margin:auto;

    color:#CBD5E1;

    font-size:20px;

    margin-bottom:45px;

    position:relative;

}

.cta-dark .btn-primary{

    position:relative;

}


/* ===================================================
   EVENTOS
=================================================== */

.events-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.event-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.4s;

}

.event-card:hover{

    transform:translateY(-14px);

    box-shadow:0 35px 60px rgba(0,0,0,.12);

}

.event-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.event-content{

    padding:30px;

}

.event-tag{

    display:inline-block;

    background:#DBEAFE;

    color:#2563EB;

    font-size:13px;

    padding:8px 15px;

    border-radius:30px;

    margin-bottom:18px;

    font-weight:700;

}

.event-content h3{

    font-size:26px;

    margin-bottom:16px;

}

.event-content p{

    color:var(--gray);

}


/* ===================================================
   BOTÃO CENTRAL
=================================================== */

.center{

    text-align:center;

    margin-top:60px;

}


/* ===================================================
   MICRO ANIMAÇÕES
=================================================== */

.btn-primary,
.btn-secondary,
.event-card,
.mini-card,
.benefit,
.logo-grid div{

    transition:
    transform .35s,
    box-shadow .35s,
    background .35s,
    border-color .35s;

}


/* ===================================================
   RESPONSIVO TABLET
=================================================== */

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.numbers{

justify-content:center;

}

.about-grid{

grid-template-columns:1fr;

}

.events-grid{

grid-template-columns:repeat(2,1fr);

}

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

.logo-grid{

grid-template-columns:repeat(3,1fr);

}

}


/* ===================================================
   RESPONSIVO CELULAR
=================================================== */

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.section-title h2{

font-size:34px;

}

.hero-buttons{

flex-direction:column;

}

.events-grid{

grid-template-columns:1fr;

}

.benefits-grid{

grid-template-columns:1fr;

}

.about-cards{

grid-template-columns:1fr;

}

.logo-grid{

grid-template-columns:repeat(2,1fr);

}

.numbers{

flex-direction:column;

gap:25px;

}

}
/* ===========================================
   O QUE VOCÊ PERDE
===========================================*/

.lost-opportunities{

    background:
    linear-gradient(135deg,#0F172A,#111827);

    color:white;

    position:relative;

    overflow:hidden;

}

.lost-opportunities::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,#2563EB35,transparent);

    top:-250px;
    left:-250px;

}

.section-title.light span{

    color:#60A5FA;

}

.section-title.light h2{

    color:white;

}

.lost-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:60px;

}

.lost-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:22px;

    padding:35px;

    transition:.35s;

}

.lost-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.10);

}

.lost-card h3{

    margin-bottom:18px;

}

.lost-card p{

    color:#CBD5E1;

}

/* ===========================================
   TIMELINE
===========================================*/

.timeline{

    background:white;

}

.timeline-wrapper{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline-wrapper::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#DBEAFE;

    transform:translateX(-50%);

}

.timeline-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:80px 0;

}

.timeline-year{

    width:120px;

    height:120px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:800;

    box-shadow:0 20px 35px rgba(37,99,235,.25);

}

.timeline-content{

    width:42%;

    background:white;

    padding:35px;

    border-radius:22px;

    border:1px solid var(--border);

    box-shadow:0 20px 40px rgba(0,0,0,.05);

}

.timeline-content h3{

    margin-bottom:15px;

}

.future .timeline-year{

    background:linear-gradient(135deg,#22C55E,#16A34A);

}

/* ===========================================
   DIRETORIA
===========================================*/

#diretoria{

    background:#F8FAFC;

}

.team-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

}

.team-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    text-align:center;

    border:1px solid var(--border);

    transition:.35s;

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 50px rgba(0,0,0,.08);

}

.team-card img{

    width:100%;

    height:270px;

    object-fit:cover;

}

.team-card h3{

    margin-top:25px;

    font-size:20px;

}

.team-card span{

    display:block;

    color:#2563EB;

    margin:12px 0 25px;

    font-weight:600;

}

/* ===========================================
   CTA FINAL
===========================================*/

.final-cta{

    background:
    linear-gradient(135deg,#2563EB,#1E3A8A);

    color:white;

    text-align:center;

}

.final-cta h2{

    font-size:54px;

    margin-bottom:25px;

}

.final-cta p{

    font-size:22px;

    margin-bottom:45px;

}

/* ===========================================
   FAQ
===========================================*/

.faq{

    background:white;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#F8FAFC;

    padding:35px;

    margin-bottom:22px;

    border-radius:18px;

    border:1px solid var(--border);

}

.faq-item h3{

    margin-bottom:15px;

}

/* ===========================================
   FORMULÁRIO
===========================================*/

.join{

    background:#EFF6FF;

}

.join-grid{

    display:grid;

    grid-template-columns:.8fr 1.2fr;

    gap:50px;

    align-items:start;

}

.join-text h2{

    font-size:48px;

    margin:20px 0;

}

.join-text ul{

    margin-top:30px;

}

.join-text li{

    margin:15px 0;

    font-size:18px;

}

.join-form iframe{

    border-radius:24px;

    background:white;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.legal-box{

    margin-top:60px;

    background:white;

    padding:45px;

    border-radius:24px;

    border-left:8px solid #2563EB;

}

.legal-box h3{

    margin-bottom:20px;

}

.legal-box ul{

    margin:25px 0;

}

.legal-box li{

    margin:12px 0;

}

/* ===========================================
   NEWSLETTER
===========================================*/

.newsletter{

    background:#0F172A;

    color:white;

    text-align:center;

}

.newsletter h2{

    font-size:46px;

}

.newsletter p{

    color:#CBD5E1;

    margin:25px auto 45px;

    max-width:700px;

}

.newsletter form{

    display:flex;

    justify-content:center;

    gap:20px;

}

.newsletter input{

    width:420px;

    padding:18px;

    border:none;

    border-radius:14px;

}

.newsletter button{

    background:#22C55E;

    border:none;

    color:white;

    padding:18px 35px;

    border-radius:14px;

    cursor:pointer;

    font-weight:700;

}

/* ===========================================
   FOOTER
===========================================*/

footer{

    background:#020617;

    color:white;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    padding:80px 0;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

footer h4{

    margin-bottom:20px;

}

footer li{

    margin:12px 0;

}

footer a{

    color:#CBD5E1;

}

footer a:hover{

    color:white;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    padding:30px;

    text-align:center;

    color:#94A3B8;

}

/* ===========================================
   WHATSAPP
===========================================*/

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:28px;

    box-shadow:0 20px 40px rgba(0,0,0,.2);

    z-index:9999;

}

/* ===========================================
   SCROLLBAR
===========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#2563EB;

    border-radius:30px;

}

::-webkit-scrollbar-track{

    background:#E2E8F0;

}

/* ===========================================
   RESPONSIVO
===========================================*/

@media(max-width:1100px){

.team-grid{

grid-template-columns:repeat(2,1fr);

}

.lost-grid{

grid-template-columns:repeat(2,1fr);

}

.join-grid{

grid-template-columns:1fr;

}

.timeline-wrapper::before{

left:60px;

}

.timeline-item{

flex-direction:column;

align-items:flex-start;

padding-left:100px;

}

.timeline-content{

width:100%;

margin-top:20px;

}

.footer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.team-grid{

grid-template-columns:1fr;

}

.lost-grid{

grid-template-columns:1fr;

}

.newsletter form{

flex-direction:column;

}

.newsletter input{

width:100%;

}

.timeline-item{

padding-left:70px;

}

.timeline-year{

width:80px;
height:80px;
font-size:18px;

}

.final-cta h2{

font-size:38px;

}

.join-text h2{

font-size:36px;

}

}
.header-scroll{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(20px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

nav a.active{

    color:#2563EB;

}

.back-to-top{

    position:fixed;

    bottom:30px;

    right:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#2563EB;

    color:white;

    cursor:pointer;

    font-size:24px;

    opacity:0;

    pointer-events:none;

    transition:.3s;

    z-index:9999;

    box-shadow:0 15px 30px rgba(0,0,0,.2);

}

.back-to-top.show{

    opacity:1;

    pointer-events:auto;

}

.faq-item{

    cursor:pointer;

}

.faq-item.open{

    border-color:#2563EB;

    background:#EFF6FF;

}