/* =========================================================
   PROCEDIMENTOS - PÁGINAS INTERNAS
   Hospital Dr. Adolfo Bezerra de Menezes

   CSS COMPARTILHADO:
   - Eletroconvulsoterapia (ECT)
   - Escetamina Endovenosa
========================================================= */


/* =========================================================
   RESET E 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;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1300px;
    margin:0 auto;
}

section{
    padding:70px 0;
}


/* =========================================================
   HERO
========================================================= */

.hero{
    min-height:72vh;

    display:flex;
    align-items:center;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    width:90%;
    max-width:1300px;
    margin:0 auto;

    color:#ffffff;
}

.hero-content span{
    display:inline-block;

    color:#67cbbf;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:18px;
}

.hero-content h1{
    max-width:850px;

    font-size:60px;
    font-weight:800;

    line-height:1.1;

    margin-bottom:24px;
}

.hero-content p{
    max-width:760px;

    font-size:20px;
    line-height:1.8;

    color:#ffffff;
}


/* =========================================================
   IMAGENS EXCLUSIVAS DOS HEROES
========================================================= */

/* ECT */

.hero-ect{
    background-image:
        linear-gradient(
            rgba(19,35,59,.72),
            rgba(19,35,59,.72)
        ),
        url("../Imagens/teste1.png");
}


/* ESCETAMINA */

.hero-escetamina{
    background-image:
        linear-gradient(
            rgba(19,35,59,.72),
            rgba(19,35,59,.72)
        ),
        url("../Imagens/teste1.png");
}


/* =========================================================
   TÍTULOS DAS SEÇÕES
========================================================= */

.titulo{
    max-width:820px;

    margin:0 auto 45px;

    text-align:center;
}

.titulo span{
    display:block;

    color:#67cbbf;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:15px;
}

.titulo h2{
    color:#13233b;

    font-size:42px;
    font-weight:800;

    line-height:1.25;

    margin-bottom:18px;
}

.titulo p{
    color:#667085;

    font-size:17px;
    line-height:1.8;
}


/* =========================================================
   INTRODUÇÃO
========================================================= */

.introducao{
    background:#ffffff;
}

.introducao .texto{
    max-width:900px;
    margin:0 auto;
}

.introducao .texto p{
    color:#5d6c7b;

    font-size:17px;
    line-height:2;

    margin-bottom:22px;

    text-align:justify;
}

.introducao .texto p:last-child{
    margin-bottom:0;
}


/* =========================================================
   ETAPAS / COMO FUNCIONA
   Utilizado nas páginas ECT e Escetamina
========================================================= */

.etapas,
.como-funciona{
    background:#f7f9fb;
}

.etapas-grid{
    display:grid;

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

    gap:24px;
}

.etapa-card{
    background:#ffffff;

    border:1px solid #e6edf2;

    border-radius:18px;

    padding:30px 24px;

    box-shadow:0 6px 18px rgba(19,35,59,.05);

    transition:transform .30s ease,
               box-shadow .30s ease,
               border-color .30s ease;
}

.etapa-card:hover{
    transform:translateY(-6px);

    border-color:#67cbbf;

    box-shadow:0 14px 30px rgba(19,35,59,.10);
}

.numero{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;

    border-radius:50%;

    background:#13233b;
    color:#67cbbf;

    font-size:15px;
    font-weight:800;
}

.etapa-card h3{
    color:#13233b;

    font-size:20px;
    font-weight:700;

    line-height:1.35;

    margin-bottom:12px;
}

.etapa-card p{
    color:#667085;

    font-size:15px;

    line-height:1.75;
}


/* =========================================================
   BENEFÍCIOS
   Utilizado caso presente no HTML da ECT
========================================================= */

.beneficios{
    background:#ffffff;
}

.beneficios-grid{
    display:grid;

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

    gap:24px;
}

.beneficio-card{
    background:#ffffff;

    border:1px solid #e6edf2;

    border-radius:18px;

    padding:28px 24px;

    text-align:center;

    box-shadow:0 6px 18px rgba(19,35,59,.05);

    transition:transform .30s ease,
               box-shadow .30s ease,
               border-color .30s ease;
}

.beneficio-card:hover{
    transform:translateY(-6px);

    border-color:#67cbbf;

    box-shadow:0 14px 30px rgba(19,35,59,.10);
}

.beneficio-card .icone{
    width:58px;
    height:58px;

    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(103,203,191,.10);

    font-size:26px;
}

.beneficio-card h3{
    color:#13233b;

    font-size:20px;
    font-weight:700;

    margin-bottom:12px;
}

.beneficio-card p{
    color:#667085;

    font-size:15px;

    line-height:1.75;
}


/* =========================================================
   PROCEDIMENTO / APLICAÇÃO
   ESCETAMINA
========================================================= */

.procedimento{
    background:#ffffff;
}

.procedimento-grid{
    display:grid;

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

    gap:24px;
}

.procedimento-card{
    background:#ffffff;

    border:1px solid #e6edf2;
    border-top:4px solid #67cbbf;

    border-radius:18px;

    padding:28px 24px;

    box-shadow:0 6px 18px rgba(19,35,59,.05);

    transition:transform .30s ease,
               box-shadow .30s ease;
}

.procedimento-card:hover{
    transform:translateY(-6px);

    box-shadow:0 14px 30px rgba(19,35,59,.10);
}

.procedimento-card .icone{
    width:58px;
    height:58px;

    margin-bottom:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(103,203,191,.10);

    font-size:26px;
}

.procedimento-card h3{
    color:#13233b;

    font-size:20px;
    font-weight:700;

    line-height:1.35;

    margin-bottom:12px;
}

.procedimento-card p{
    color:#667085;

    font-size:15px;

    line-height:1.75;
}


/* =========================================================
   INDICAÇÕES
========================================================= */

.indicacoes{
    background:#f7f9fb;
}

.indicacoes-grid{
    display:grid;

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

    gap:24px;
}

.indicacao-card{
    background:#ffffff;

    border:1px solid #e6edf2;

    border-radius:18px;

    padding:28px 24px;

    text-align:center;

    box-shadow:0 6px 18px rgba(19,35,59,.05);

    transition:transform .30s ease,
               box-shadow .30s ease,
               border-color .30s ease;
}

.indicacao-card:hover{
    transform:translateY(-6px);

    border-color:#67cbbf;

    box-shadow:0 14px 30px rgba(19,35,59,.10);
}

.indicacao-card .icone{
    width:58px;
    height:58px;

    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(103,203,191,.10);

    font-size:26px;
}

.indicacao-card h3{
    color:#13233b;

    font-size:20px;
    font-weight:700;

    line-height:1.35;

    margin-bottom:12px;
}

.indicacao-card p{
    color:#667085;

    font-size:15px;

    line-height:1.75;
}


/* =========================================================
   SESSÕES
   Utilizado pela página ECT
========================================================= */

.sessoes{
    background:#f7f9fb;
}

.sessoes-box{
    max-width:1050px;

    margin:0 auto;

    display:grid;

    grid-template-columns:1.5fr .7fr;

    gap:40px;

    align-items:center;

    background:#13233b;

    border-radius:22px;

    padding:45px 50px;

    color:#ffffff;

    box-shadow:0 16px 40px rgba(19,35,59,.16);
}

.sessoes-info span{
    display:block;

    color:#67cbbf;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:14px;
}

.sessoes-info h2{
    font-size:34px;
    font-weight:800;

    line-height:1.25;

    margin-bottom:18px;

    color:#ffffff;
}

.sessoes-info p{
    font-size:16px;

    line-height:1.8;

    color:#ffffff;

    opacity:.94;

    margin-bottom:14px;
}

.sessoes-info p:last-child{
    margin-bottom:0;
}

.sessoes-destaque{
    text-align:center;

    padding:25px;

    border-left:1px solid rgba(255,255,255,.18);
}

.sessoes-destaque strong{
    display:block;

    color:#67cbbf;

    font-size:52px;
    font-weight:800;

    line-height:1;

    margin-bottom:12px;
}

.sessoes-destaque span{
    display:block;

    color:#ffffff;

    font-size:14px;

    line-height:1.6;

    opacity:.9;
}


/* =========================================================
   SEGURANÇA
========================================================= */

.seguranca{
    background:#ffffff;
}


/* Caixa grande utilizada na página Escetamina */

.seguranca-box{
    max-width:850px;

    margin:0 auto;

    background:#13233b;

    color:#ffffff;

    text-align:center;

    padding:42px 48px;

    border-radius:22px;

    box-shadow:0 16px 40px rgba(19,35,59,.16);
}

.seguranca-box span{
    display:block;

    color:#67cbbf;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:14px;
}

.seguranca-box h2{
    color:#ffffff;

    font-size:34px;
    font-weight:800;

    line-height:1.25;

    margin-bottom:20px;
}

.seguranca-box p{
    max-width:720px;

    margin:0 auto 16px;

    color:#ffffff;

    font-size:16px;

    line-height:1.8;

    opacity:.94;
}

.seguranca-box p:last-child{
    margin-bottom:0;
}


/* Cards de segurança utilizados caso existam no HTML da ECT */

.seguranca-grid{
    display:grid;

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

    gap:24px;

    margin-bottom:35px;
}

.seguranca-card{
    background:#ffffff;

    padding:28px 24px;

    border:1px solid #e6edf2;

    border-radius:18px;

    text-align:center;

    box-shadow:0 6px 18px rgba(19,35,59,.05);

    transition:transform .30s ease,
               box-shadow .30s ease,
               border-color .30s ease;
}

.seguranca-card:hover{
    transform:translateY(-6px);

    border-color:#67cbbf;

    box-shadow:0 14px 30px rgba(19,35,59,.10);
}

.seguranca-card .icone{
    width:58px;
    height:58px;

    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(103,203,191,.10);

    font-size:26px;
}

.seguranca-card h3{
    color:#13233b;

    font-size:20px;
    font-weight:700;

    margin-bottom:12px;
}

.seguranca-card p{
    color:#667085;

    font-size:15px;

    line-height:1.75;
}


/* =========================================================
   EFEITOS / OBSERVAÇÕES
========================================================= */

.efeitos-box{
    max-width:850px;

    margin:0 auto;

    padding:28px 32px;

    text-align:center;

    border-radius:18px;

    background:#f7f9fb;

    border:1px solid #e4ecef;
}

.efeitos-box h3{
    color:#13233b;

    font-size:21px;
    font-weight:700;

    margin-bottom:12px;
}

.efeitos-box p{
    color:#667085;

    font-size:15px;

    line-height:1.8;
}


/* =========================================================
   SPRAVATO
   ESCETAMINA INTRANASAL
========================================================= */

.spravato{
    background:#f7f9fb;
}

.spravato-grid{
    display:grid;

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

    gap:24px;
}

.spravato-card{
    background:#ffffff;

    border:1px solid #e6edf2;

    border-radius:18px;

    padding:28px 24px;

    text-align:center;

    box-shadow:0 6px 18px rgba(19,35,59,.05);

    transition:transform .30s ease,
               box-shadow .30s ease,
               border-color .30s ease;
}

.spravato-card:hover{
    transform:translateY(-6px);

    border-color:#67cbbf;

    box-shadow:0 14px 30px rgba(19,35,59,.10);
}

.spravato-card .icone{
    width:58px;
    height:58px;

    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(103,203,191,.10);

    font-size:26px;
}

.spravato-card h3{
    color:#13233b;

    font-size:19px;
    font-weight:700;

    line-height:1.35;

    margin-bottom:12px;
}

.spravato-card p{
    color:#667085;

    font-size:15px;

    line-height:1.75;
}


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

.faq{
    background:#ffffff;
}


/* =========================================================
   CONTATO
========================================================= */

.contato-utilidade{
    background:#f7fafb;
}

.contato-card{
    max-width:560px;

    margin:0 auto;

    background:#ffffff;

    border:1px solid #e6eef3;

    border-radius:18px;

    padding:28px 32px;

    text-align:center;

    box-shadow:0 10px 28px rgba(19,35,59,.08);
}

.icone-contato{
    width:64px;
    height:64px;

    margin:0 auto 16px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(103,203,191,.10);

    font-size:28px;
}

.contato-card h2{
    color:#13233b;

    font-size:27px;
    font-weight:800;

    line-height:1.3;

    margin-bottom:14px;
}

.contato-card p{
    max-width:450px;

    margin:0 auto 24px;

    color:#667085;

    font-size:15px;

    line-height:1.8;
}

.botoes{
    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;
}

.btn-contato{
    display:flex;

    align-items:center;
    justify-content:center;

    min-width:155px;
    min-height:52px;

    padding:11px 20px;

    border-radius:40px;

    background:#67cbbf;

    color:#ffffff;

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    transition:transform .30s ease,
               background .30s ease;
}

.btn-contato:hover{
    background:#58beb2;

    transform:translateY(-3px);
}

.btn-whatsapp{
    background:#25D366;
}

.btn-whatsapp:hover{
    background:#1eb85a;
}


/* =========================================================
   ANIMAÇÃO DE ENTRADA
========================================================= */

/* As seções permanecem visíveis por padrão */

.introducao,
.sobre-procedimento,
.etapas,
.como-funciona,
.beneficios,
.procedimento,
.indicacoes,
.sessoes,
.seguranca,
.spravato,
.faq,
.contato-utilidade{
    transition:opacity .7s ease,
               transform .7s ease;
}

/* A classe show é compatível com o JavaScript,
   sem esconder o conteúdo caso o JS falhe */

.introducao.show,
.sobre-procedimento.show,
.etapas.show,
.como-funciona.show,
.beneficios.show,
.procedimento.show,
.indicacoes.show,
.sessoes.show,
.seguranca.show,
.spravato.show,
.faq.show,
.contato-utilidade.show{
    opacity:1;
    transform:translateY(0);
}


/* =========================================================
   RESPONSIVIDADE - TABLET GRANDE
========================================================= */

@media(max-width:1100px){

    .etapas-grid,
    .procedimento-grid,
    .spravato-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVIDADE - TABLET
========================================================= */

@media(max-width:992px){

    .beneficios-grid,
    .indicacoes-grid,
    .seguranca-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .sessoes-box{
        grid-template-columns:1fr;
    }

    .sessoes-destaque{
        border-left:none;
        border-top:1px solid rgba(255,255,255,.18);

        padding-top:30px;
    }

}


/* =========================================================
   RESPONSIVIDADE - MOBILE
========================================================= */

@media(max-width:768px){

    section{
        padding:55px 0;
    }

    .hero{
        min-height:60vh;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content p{
        font-size:18px;
    }

    .titulo{
        margin-bottom:35px;
    }

    .titulo h2{
        font-size:34px;
    }

    .sessoes-box{
        padding:35px 30px;
    }

    .sessoes-info h2,
    .seguranca-box h2{
        font-size:30px;
    }

    .seguranca-box{
        padding:35px 30px;
    }

    .contato-card{
        padding:30px 25px;
    }

    .botoes{
        flex-direction:column;
    }

    .btn-contato{
        width:100%;
    }

}


/* =========================================================
   RESPONSIVIDADE - MOBILE PEQUENO
========================================================= */

@media(max-width:640px){

    .hero-content h1{
        font-size:36px;
    }

    .hero-content span,
    .titulo span{
        font-size:12px;
    }

    .titulo h2{
        font-size:29px;
    }

    .introducao .texto p{
        text-align:left;
        font-size:16px;
    }

    .beneficios-grid,
    .indicacoes-grid,
    .etapas-grid,
    .procedimento-grid,
    .spravato-grid,
    .seguranca-grid{
        grid-template-columns:1fr;
    }

    .etapa-card,
    .beneficio-card,
    .procedimento-card,
    .indicacao-card,
    .spravato-card,
    .seguranca-card{
        padding:25px 20px;
    }

    .seguranca-box{
        padding:30px 22px;
    }

    .seguranca-box h2{
        font-size:27px;
    }

    .seguranca-box p{
        font-size:15px;
    }

    .sessoes-destaque strong{
        font-size:46px;
    }

}

/* =========================================================
ANIMAÇÃO DAS SEÇÕES
========================================================= */

.introducao,
.sobre-procedimento,
.etapas,
.procedimento,
.beneficios,
.indicacoes,
.seguranca,
.spravato,
.faq,
.contato-utilidade,
.sessoes,
.mitos{
    opacity:0;
    transform:translateY(30px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.introducao.show,
.sobre-procedimento.show,
.etapas.show,
.procedimento.show,
.beneficios.show,
.indicacoes.show,
.seguranca.show,
.spravato.show,
.faq.show,
.contato-utilidade.show,
.sessoes.show,
.mitos.show{
    opacity:1;
    transform:translateY(0);
}