/* ==========================================
   CONFIGURAÇÕES GERAIS
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    color:#13233b;
    background:#ffffff;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:0 auto;
}

section{
    position:relative;
}


/* ==========================================
   EYEBROW / PEQUENOS TÍTULOS
========================================== */

.section-eyebrow{
    display:inline-block;
    color:#57a695;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-eyebrow.light{
    color:#7de1d8;
}


/* ==========================================
   HERO
========================================== */

.arrecadacao-hero{
    min-height:720px;
    display:flex;
    align-items:center;

    background:
        linear-gradient(
            90deg,
            rgba(12, 29, 48, .88) 0%,
            rgba(19, 35, 59, .70) 45%,
            rgba(19, 35, 59, .30) 100%
        ),
        url("../Imagens/tmkt.jfif");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.arrecadacao-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.10),
            rgba(0,0,0,.20)
        );
}

.arrecadacao-hero-content{
    position:relative;
    z-index:2;
    width:100%;
}

.arrecadacao-hero-text{
    max-width:760px;
    padding:100px 0;
}

.arrecadacao-hero h1{
    color:#ffffff;
    font-size:clamp(48px, 5vw, 76px);
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:28px;
    font-weight:800;
}

.arrecadacao-hero p{
    max-width:650px;
    color:#e6edf2;
    font-size:20px;
    line-height:1.8;
    margin-bottom:38px;
}

.hero-button{
    display:inline-flex;
    align-items:center;
    gap:16px;

    background:#67cbbf;
    color:#13233b;

    padding:17px 24px;
    border-radius:50px;

    text-decoration:none;
    font-size:14px;
    font-weight:800;

    transition:.3s ease;
}

.hero-button span{
    font-size:20px;
    transition:.3s ease;
}

.hero-button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(103,203,191,.20);
}

.hero-button:hover span{
    transform:translateX(4px);
}


/* ==========================================
   CARD DA COORDENADORA
   NÃO ALTERADO
========================================== */

.coordenadores{
    position:relative;
    z-index:5;
    margin-top:-70px;
    padding-bottom:30px;
}


/* ==========================================
   SOBRE
========================================== */

.sobre-arrecadacao{
    padding:50px 0;
}

.sobre-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:start;
}

.sobre-texto h2{
    max-width:570px;
    color:#13233b;
    font-size:clamp(38px, 4vw, 58px);
    line-height:1.12;
    letter-spacing:-1.5px;
}

.sobre-descricao{
    border-left:1px solid #dbe7e8;
    padding-left:50px;
}

.sobre-descricao p{
    color:#667085;
    font-size:16px;
    line-height:1.9;
    margin-bottom:22px;
}

.sobre-descricao p:last-child{
    margin-bottom:0;
}


/* ==========================================
   TÍTULOS CENTRALIZADOS
========================================== */

.titulo{
    max-width:850px;
    margin:0 auto 40px;
    text-align:center;
}

.titulo h2{
    color:#13233b;
    font-size:clamp(36px, 4vw, 54px);
    line-height:1.15;
    letter-spacing:-1.5px;
    margin-bottom:18px;
}

.titulo p{
    max-width:700px;
    margin:0 auto;
    color:#667085;
    line-height:1.8;
}


/* ==========================================
   POR QUE DOAR
========================================== */

.porque-doar{
    padding:50px 0;
    background:#f4f8f8;
}

.motivos-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.motivo{
    background:#ffffff;
    padding:40px 34px;
    border-radius:22px;

    border:1px solid transparent;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.motivo:hover{
    transform:translateY(-6px);
    border-color:#d7eeee;
    box-shadow:0 20px 40px rgba(19,35,59,.08);
}

.motivo-icon{
    width:62px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:#e4f6f3;
    color:#2c9f93;

    font-size:26px;

    margin-bottom:28px;
}

.motivo h3{
    font-size:21px;
    color:#13233b;
    margin-bottom:14px;
}

.motivo p{
    color:#667085;
    line-height:1.8;
    font-size:15px;
}


/* ==========================================
   FORMAS DE DOAÇÃO
========================================== */

.como-doar{
    padding:50px 0;
}

.doacoes-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;

    max-width:780px;
    margin:0 auto;
}


/* ==========================================
   CARDS DE DOAÇÃO
   REDUZIDOS
========================================== */

.doacao-card{
    background:#ffffff;
    border:1px solid #e7ecec;
    border-radius:20px;

    padding:22px;

    min-height:300px;

    display:flex;
    flex-direction:column;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.doacao-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(19,35,59,.08);
}

.doacao-card-top{
    margin-bottom:14px;
}

.doacao-tag{
    display:inline-block;

    padding:7px 11px;
    border-radius:50px;

    background:#e8f7f5;
    color:#2f978d;

    font-size:9px;
    font-weight:800;
    letter-spacing:1.1px;
}


/* ==========================================
   CARD COM QR CODE
========================================== */

.qr-card{
    align-items:center;
    text-align:center;
}

.qr-card .doacao-card-top{
    align-self:flex-start;
}

.qr-card img{
    width:130px;
    max-width:100%;
    height:auto;
    object-fit:contain;

    margin:5px auto 14px;
}

.doacao-card-content{
    margin-top:auto;
}

.doacao-card h3{
    font-size:20px;
    color:#13233b;
    margin-bottom:8px;
}

.doacao-card p{
    color:#667085;
    line-height:1.65;
    font-size:13px;
}


/* ==========================================
   PIX
========================================== */

.pix-card{
    background:#13233b;
    color:#ffffff;
    border-color:#13233b;
}

.pix-card .doacao-card-top{
    margin-bottom:18px;
}

.pix-card .doacao-tag{
    background:rgba(103,203,191,.14);
    color:#82ddd5;
}

.pix-card h3{
    color:#ffffff;
}

.pix-card p{
    color:#cbd5df;
}

.pix-box{
    background:rgba(255,255,255,.07);

    border:1px solid rgba(255,255,255,.10);

    padding:18px;
    border-radius:14px;

    margin-bottom:18px;
}

.pix-label{
    display:block;

    color:#67cbbf;

    font-size:10px;
    font-weight:800;
    letter-spacing:1.2px;
    text-transform:uppercase;

    margin-bottom:9px;
}

.pix-box strong{
    display:block;

    font-size:16px;

    color:#ffffff;

    word-break:break-word;
}


/* ==========================================
   FAQ
========================================== */

.faq{
    padding:50px 0;
    background:#f4f8f8;
}

.faq-container{
    max-width:1050px;
}

.accordion{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.accordion-item{
    background:#ffffff;

    border:1px solid #e1ebeb;
    border-radius:16px;

    overflow:hidden;

    transition:.3s ease;
}

.accordion-item:hover{
    border-color:#b8dfda;
}

.accordion-item.active{
    border-color:#67cbbf;
    box-shadow:0 10px 25px rgba(19,35,59,.05);
}

.accordion-header{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    background:transparent;
    border:none;

    padding:24px 26px;

    color:#13233b;

    font-family:'Inter', sans-serif;
    font-size:16px;
    font-weight:700;

    text-align:left;
    cursor:pointer;
}

.seta{
    color:#57a695;
    font-size:13px;
    transition:transform .3s ease;
}

.accordion-item.active .seta{
    transform:rotate(180deg);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.accordion-content p{
    padding:0 26px 25px;

    color:#667085;
    font-size:15px;
    line-height:1.8;
}


/* ==========================================
   CONTATO
========================================== */

.contato-arrecadacao{
    padding:50px 0;
}


/* ==========================================
   CARDS DE CONTATO
   REDUZIDOS
========================================== */

.infos{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;

    max-width:1050px;
    margin:0 auto;
}

.info-card{
    background:#ffffff;

    padding:24px 20px;

    min-height:185px;

    text-align:center;

    border:1px solid #e7ecec;
    border-radius:18px;

    transition:.3s ease;
}

.info-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(19,35,59,.08);
}

.info-icon{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 14px;

    background:#e7f6f4;
    color:#339e94;

    border-radius:50%;

    font-size:20px;
}

.info-card h4{
    color:#13233b;
    font-size:16px;
    margin-bottom:8px;
}

.info-card p{
    color:#667085;
    line-height:1.6;
    font-size:13px;
}


/* ==========================================
   AGRADECIMENTO
   ALTURA REDUZIDA
========================================== */

.agradecimento{
    padding:50px 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(103,203,191,.12),
            transparent 35%
        ),
        #13233b;

    color:#ffffff;

    text-align:center;
}

.agradecimento-content{
    max-width:780px;
    margin:0 auto;
}

.agradecimento-content > span{
    display:inline-block;

    color:#67cbbf;

    font-size:10px;
    font-weight:800;
    letter-spacing:1.8px;

    margin-bottom:12px;
}

.agradecimento h2{
    font-size:clamp(28px, 3vw, 40px);
    line-height:1.15;
    letter-spacing:-1px;

    margin-bottom:14px;
}

.agradecimento p{
    max-width:720px;

    margin:0 auto 10px;

    color:#d0d8e0;
    font-size:14px;
    line-height:1.7;
}

.agradecimento p:last-child{
    margin-bottom:0;
}


/* ==========================================
   RESPONSIVO
========================================== */

@media(max-width:1000px){

    .arrecadacao-hero{
        min-height:650px;
    }

    .sobre-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .sobre-descricao{
        padding-left:0;
        border-left:none;
        border-top:1px solid #dbe7e8;
        padding-top:35px;
    }

    .motivos-grid{
        grid-template-columns:1fr;
    }

    .motivo{
        padding:34px;
    }

    .infos{
        grid-template-columns:1fr;
        max-width:500px;
    }

    .doacoes-grid{
        grid-template-columns:1fr;
        max-width:420px;
    }

}


@media(max-width:768px){

    .arrecadacao-hero{
        min-height:620px;
        background-position:center;
    }

    .arrecadacao-hero-text{
        padding:90px 0 70px;
    }

    .arrecadacao-hero h1{
        font-size:50px;
    }

    .arrecadacao-hero p{
        font-size:17px;
    }

    .coordenadores{
        margin-top:-40px;
    }

    .sobre-arrecadacao,
    .porque-doar,
    .como-doar,
    .faq,
    .contato-arrecadacao,
    .agradecimento{
        padding:50px 0;
    }

    .titulo{
        margin-bottom:35px;
    }

    .titulo h2{
        font-size:38px;
    }

    .sobre-texto h2{
        font-size:42px;
    }

    .doacao-card{
        min-height:auto;
    }

}


@media(max-width:600px){

    .container{
        width:90%;
    }

    .arrecadacao-hero{
        min-height:580px;
    }

    .arrecadacao-hero h1{
        font-size:40px;
        letter-spacing:-1px;
    }

    .arrecadacao-hero p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-button{
        width:100%;
        justify-content:center;
    }

    .section-eyebrow{
        font-size:10px;
        letter-spacing:1.4px;
    }

    .titulo{
        margin-bottom:30px;
    }

    .titulo h2{
        font-size:32px;
    }

    .sobre-texto h2{
        font-size:34px;
    }

    .sobre-descricao p{
        font-size:15px;
    }

    .motivo{
        padding:28px 24px;
    }

    .doacao-card{
        padding:20px;
        border-radius:18px;
    }

    .qr-card img{
        width:120px;
    }

    .pix-box{
        padding:18px;
    }

    .pix-box strong{
        font-size:15px;
    }

    .accordion-header{
        padding:21px 20px;
        font-size:14px;
    }

    .accordion-content p{
        padding:0 20px 21px;
        font-size:14px;
    }

    .info-card{
        padding:24px 20px;
        min-height:auto;
    }

    .agradecimento{
        padding:50px 0;
    }

    .agradecimento h2{
        font-size:30px;
    }

    .agradecimento p{
        font-size:13px;
        line-height:1.65;
    }

}