*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Open Sans',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#eef7f6;
    color:#02233d;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Cabeçalho / navegação */
header{
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #ddd;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    text-decoration:none;
    color:#02233d;
    font-size:0.95rem;
}

.logo-header{
    width:50px;
    max-width:140px;
    height:auto;
}

.btn-topo,
.btn-principal{
    background:#2c9d9d;
    color:white;
    padding:10px 22px;
    border-radius:28px;
    text-decoration:none;
    font-size:0.95rem;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:10px;
}

.mobile-agendar{
    display:none;
}

.menu-toggle{
    display:none;
    border:none;
    background:transparent;
    flex-direction:column;
    justify-content:space-between;
    width:36px;
    height:26px;
    cursor:pointer;
    padding:0;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    border-radius:3px;
    background:#02233d;
}

.btn-icon{
    width:20px;
    height:20px;
    object-fit:contain;
}

.btn-secundario{
    background:white;
    color:#02233d;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
    border:1px solid #ddd;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* Seção hero / destaque inicial */
.hero{
    padding:70px 0;
    background:linear-gradient(to bottom, #ffffff 0%, #eef7ff 100%);
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.hero-text{
    max-width:650px;
}

.localizacao{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#2c9d9d;
    background:rgba(44,157,157,0.12);
    padding:10px 16px;
    border-radius:999px;
    border:1px solid rgba(44,157,157,0.25);
    font-size:0.95rem;
    font-weight:500;
}

.localizacao-icon{
    width:20px;
    height:20px;
    object-fit:contain;
    vertical-align:middle;
    margin-right:6px;
}

.hero h1{
    font-size:50px;
    margin:20px 0;
    line-height:1.1;
}

.hero h1 span{
    color:#2c9d9d;
}

.hero p{
    line-height:1.8;
    max-width:560px;
}

/* Imagem e logo do hero */
.hero-img img{
    width:400px;
    max-width:100%;
    border-radius:10000px;
}

.botoes{
    margin-top:30px;
    display:flex;
    gap:15px;
}

/* Espaçamento geral das seções */
section{
    padding:60px 0;
}
section#sobre{
    scroll-margin-top:100px;
    background-color:#f9ffff;
}
.titulo-menor{
    color:#2c9d9d;
    font-size:13px;
    letter-spacing:1px;
}

h2{
    font-size:34px;
    margin:15px 0 30px;
    line-height:1.1;
}

.cards,
.planos-grid,
.parcerias-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.card{
    background:white;
    border:1px solid #cfe0df;
    border-radius:20px;
    padding:40px;
    min-height:280px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.plano,
.parceiro,
.caixa-horario{
    background:white;
    border:none;
    border-radius:20px;
    padding:30px 30px 30px 40px;
    min-height:290px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    max-width:460px;
    width:100%;
    margin:0 auto;
}

.card-icon{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    background:#d3eeee;
    border-radius:15%;
    
    
}

.section-icon{
    width:24px;
    height:auto;
    display:inline-block;
    margin-right:10px;
    vertical-align:middle;
}

.caixa-horario h3{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:25px;
    color:#2c9d9d;
}

.caixa-horario .linha p{
    font-size:0.9rem;
    color:#6b6b6b;
    margin:0;
}

.caixa-horario .linha strong{
    display:block;
    font-size:1.35rem;
    margin-top:6px;
    color:#02233d;
}

.card h3{
    margin-bottom:20px;
}

.card p{
    line-height:1.85;
    font-size:0.95rem;
    color:#6b6b6b;
}

/* Seção horários */
.horarios{
    scroll-margin-top:100px;
    background-color:#eef7ff;
}

.horario-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.caixa-horario hr{
    border:none;
    height:1px;
    background:#cfe0df;
    margin:20px 0;
}

.horarios h2 span{
    color:#e0a542;
}

.exames{
    scroll-margin-top:100px;
    background-color:#f9ffff;
}

.exames .container{
    max-width:900px;
    text-align:center;
}

.exames h2{
    margin-top:10px;
}

.exames p{
    color:#6b6b6b;
    max-width:720px;
    margin:0 auto 35px;
}

.exame-search{
    margin-bottom:24px;
    display:flex;
    justify-content:center;
}

.exame-search input{
    width:100%;
    max-width:520px;
    padding:14px 18px;
    border:1px solid #cfe0df;
    border-radius:14px;
    font-size:0.95rem;
    color:#02233d;
    background:#f7feff;
}

.exame-search input:focus{
    outline:none;
    border-color:#2c9d9d;
    box-shadow:0 0 0 4px rgba(44,157,157,0.12);
}

.exames-list{
    display:grid;
    gap:14px;
}

.mostrar-mais-exames{
    margin:18px auto 0;
    border:none;
    border-radius:999px;
    background:#2c9d9d;
    color:#fff;
    padding:12px 18px;
    font-weight:600;
    cursor:pointer;
    transition:background 0.2s ease, transform 0.2s ease;
}

.mostrar-mais-exames:hover{
    background:#248181;
    transform:translateY(-1px);
}

.exame-item{
    border-radius:20px;
    background:white;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
    border:1px solid #dfe8e7;
    overflow:hidden;
    transition:transform 0.25s ease, border-color 0.25s ease;
}

.exame-item:hover{
    transform:none;
    border-color:#dfe8e7;
}

.exame-toggle{
    width:100%;
    border:none;
    background:transparent;
    padding:18px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    cursor:pointer;
    text-align:left;
}

.exame-title{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:1rem;
    color:#02233d;
    padding-top: 2%;
}

.exame-icon{
    width:40px;
    height:40px;
    padding:5px;
    background:#d3eeee;
    border-radius:14px;
}

.exame-arrow{
    width:10px;
    height:10px;
    display:inline-block;
    object-fit:contain;
    transition:transform 0.25s ease;
}

.exame-item.active .exame-arrow{
    transform:rotate(180deg);
}

.exame-content{
    position:relative;
    max-height:0;
    overflow:hidden;
    padding:18px 24px 0 80px;
    background:#ffffff;
    text-align:left;
    transition:max-height 0.4s ease;
}

.exame-content::before{
    content:'';
    position:absolute;
    left:88px;
    top:22px;
    width:18px;
    height:18px;
    background-image:url("imgs/prancheta.png");
    background-size:contain;
    background-repeat:no-repeat;
}

.exame-content p,
.exame-content ul{
    margin:0;
    padding:0;
}

.exame-details{
    list-style:disc outside;
    padding-left:48px !important;
    margin:8px 0 0;
    text-align:left;
}

.exame-details li{
    line-height:1.28;
    color:#4d6170;
    margin-bottom:4px;
    font-size:0.92rem;
}

.exame-item.active .exame-content{
    max-height:999px;
    padding:22px 28px 22px 80px;
}

.parcerias-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

/* Seção planos */
.planos{
    scroll-margin-top:100px;
    background-color:#f9ffff;
    text-align:center;
    padding:95px 0;
}

.planos .titulo-menor{
    display:inline-flex;
    justify-content:center;
    padding:6px 12px;
}

.planos h2{
    margin-bottom:40px;
}

.planos .planos-grid{
    margin-top:18px;
    gap:28px;
}

.planos .plano{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:30px;
    min-height:120px;
    background:white;
    border:1px solid #cfe0df;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}


/* Seção parcerias */
.parcerias{
    scroll-margin-top:100px;
    background-color:#f9ffff;
    text-align:center;
    padding:95px 0;
}

.parcerias .titulo-menor{
    display:inline-flex;
    justify-content:center;
    padding:6px 12px;
}

.parcerias h2{
    margin-bottom:40px;
}

.parcerias .parcerias-grid{
    margin-top:18px;
    gap:28px;
}

.parcerias .parceiro{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:30px;
    min-height:120px;
    background:white;
    border:1px solid #cfe0df;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* Rodapé completo */
.footer-cta{
    background:#2c9d9d;
    color:#ffffff;
    scroll-margin-top:100px;
}

.footer-cta-top{
    padding:70px 0 40px;
    text-align:center;
}

.footer-cta-top h2{
    font-size:38px;
    margin-bottom:18px;
    line-height:1.06;
}

.footer-cta-top p{
    max-width:700px;
    margin:0 auto 30px;
    color:rgba(255,255,255,0.92);
    line-height:1.75;
}

.footer-cta-buttons{
    display:inline-flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
    margin-bottom:25px;
}

.btn-footer{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border-radius:999px;
    padding:14px 26px;
    text-decoration:none;
    font-weight:600;
    font-size:0.95rem;
}

.btn-footer-solid{
    background:white;
    color:#000000;
}

.btn-footer-outline{
    border:1px solid rgba(255,255,255,0.75);
    color:white;
    background:transparent;
}

.footer-address{
    display:block;
    max-width:680px;
    margin:0 auto;
    padding-top:10px;
    color:rgba(255,255,255,0.82);
    font-size:0.95rem;
}

.footer-bottom{
    background:#f4f7f7;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:22px 0;
}

.footer-bottom-left{
    display:flex;
    align-items:center;
    gap:14px;
    color:#02233d;
}

.footer-bottom-left .footer-logo{
    width:42px;
}

.footer-bottom-right{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.footer-bottom-right a{
    color:#02233d;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:0.95rem;
}

/* Ajustes para telas menores */
@media(max-width:1200px){
    .container{
        width:92%;
    }

    .hero-content{
        gap:20px;
    }

    .hero h1{
        font-size:44px;
    }

    .btn-topo,
    .btn-principal,
    .btn-secundario{
        padding:10px 18px;
        font-size:0.9rem;
    }

    .footer-cta-top h2{
        font-size:34px;
    }
}

@media(max-width:900px){
    .container{
        width:88%;
    }

    .hero-content,
    .horario-grid{
        display:block;
    }

    .hero-img{
        display:none;
    }

    .cards,
    .planos-grid,
    .parcerias-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:36px;
    }

    .hero-img img{
        width:100%;
        max-width:320px;
    }

    .planos,
    .parcerias{
        padding:80px 0;
    }

    .card{
        padding:35px;
        min-height:auto;
    }

    .plano,
    .parceiro,
    .caixa-horario{
        padding:25px 25px 25px 30px;
    }
}

@media(max-width:700px){
    .container{
        width:82%;
    }

    header nav{
        display:none;
        position:absolute;
        top:100%;
        right:20px;
        left:auto;
        width:260px;
        background:white;
        flex-direction:column;
        gap:0;
        padding:20px 20px 25px;
        border-bottom:1px solid #ddd;
        box-shadow:0 12px 30px rgba(0,0,0,0.08);
        z-index:999;
        align-items:flex-start;
    }

    header nav.open{
        display:flex;
    }

    header nav a{
        display:block;
        padding:12px 0;
        border-bottom:1px solid #f0f0f0;
        color:#02233d;
        font-weight:600;
    }

    header nav a.btn-topo{
        display:flex;
        justify-content:center;
        background:#2c9d9d;
        color:white;
        border-radius:28px;
        padding:10px 18px;
        margin-top:10px;
    }

    header nav a:last-child{
        border-bottom:none;
    }

    .menu-toggle{
        display:flex;
    }

    .desktop-agendar{
        display:none;
    }

    .mobile-agendar{
        display:flex;
    }

    .menu-toggle{
        display:flex;
    }

    .hero-content,
    .horario-grid,
    .footer-bottom-content{
        display:block;
    }

    .footer-bottom-content{
        align-items:center;
        text-align:center;
    }

    .footer-bottom-right{
        justify-content:center;
    }

    .botoes{
        flex-direction:column;
        align-items:stretch;
    }

    .btn-topo,
    .btn-principal,
    .btn-secundario{
        width:100%;
        justify-content:center;
    }

    .hero h1{
        font-size:30px;
    }

    .hero-text,
    .hero-img,
    .planos-grid,
    .parcerias-grid{
        width:100%;
    }

    .hero p{
        max-width:100%;
    }

    .footer-cta-top p{
        padding:0 10px;
    }
}

@media(max-width:500px){
    .container{
        width:90%;
    }

    .hero{
        padding:40px 0;
    }

    .hero h1{
        font-size:26px;
    }

    .hero p{
        font-size:0.95rem;
    }

    .btn-topo,
    .btn-principal,
    .btn-secundario{
        padding:12px 16px;
        gap:8px;
        font-size:0.9rem;
    }

    .footer-cta-top h2{
        font-size:28px;
    }

    .footer-cta-buttons{
        gap:12px;
    }

    .footer-bottom-content{
        padding:18px 0;
    }

    .footer-address{
        font-size:0.9rem;
    }
}
