* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
}

/* BARRA SUPERIOR */

.barra-superior {
    background: #f5f5f5;
    border-bottom: 1px solid #e6e6e6;
}

.barra-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 46px;
}

.contatos-topo {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    color: #555;
}

.contatos-topo strong {
    color: #0a9c91;
    letter-spacing: 1px;
}

.contatos-topo a {
    color: #555;
    text-decoration: none;
}

.telefone-topo a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.whats-topo {
    width: 19px;
    height: 10px;
    object-fit: contain;
}

.resultados-online {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #10aa9b;
    color: white;
    text-decoration: none;
    padding: 13px 22px;
    font-weight: bold;
    font-size: 15px;
}

.icone-documento {
    background: #e93445;
    padding: 7px 10px;
    font-size: 16px;
}

/* TOPO / MENU */

.topo {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.topo-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 105px;
}

.logo {
    height: 125px;
    max-width: 260px;
    object-fit: contain;
}

.menu a {
    color: #0a8f85;
    text-decoration: none;
    margin-left: 26px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.menu a:hover {
    color: #e72f45;
}

/* CARROSSEL */

.carrossel {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    background: #f2f2f2;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.ativo {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.60) 36%,
        rgba(255,255,255,0.05) 100%
    );
}

.slide-texto {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 460px;
}

.slide-texto h1 {
    color: #08796f;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.slide-texto p {
    color: #444;
    font-size: 20px;
}

.carrossel-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 143, 133, 0.82);
    color: white;
    border: none;
    font-size: 30px;
    width: 44px;
    height: 54px;
    cursor: pointer;
}

.carrossel-btn:hover {
    background: #08796f;
}

.anterior {
    left: 18px;
}

.proximo {
    right: 18px;
}

/* SOBRE */

.sobre {
    padding: 42px 0;
    text-align: center;
}

.sobre h2 {
    color: #0a8f85;
    font-size: 28px;
    margin-bottom: 16px;
}

.sobre p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.55;
}

/* EXAMES HOME */

.exames-home {
    background: #12aa9b;
    color: white;
    padding: 45px 0;
}

.exames-conteudo {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 45px;
    align-items: start;
}

.exames-titulo h2 {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.lista-exames {
    display: grid;
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: 24px 55px;
}

.exame-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.exame-item span {
    background: rgba(255,255,255,0.45);
    min-width: 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exame-item p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
}

.botao-exames {
    display: inline-block;
    padding: 12px 24px;
    color: white;
    border: 1px solid white;
    border-radius: 28px;
    text-decoration: none;
    font-size: 16px;
}

.botao-exames:hover {
    background: white;
    color: #0a8f85;
}

/* INFORMAÇÕES */

.info-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    padding: 45px 70px;
    background: #f7f7f7;
}

.info-card h3 {
    color: #0a9c91;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 17px;
    margin-bottom: 20px;
}

.info-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 5px;
}

.info-card a {
    color: #0a9c91;
    text-decoration: none;
}

.whats-info {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

/* RODAPÉ */

footer {
    background: #08796f;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-flutuante {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 78px;
    height: 78px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.whatsapp-flutuante:hover {
    transform: scale(1.08);
}

.whatsapp-flutuante img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* INSTITUCIONAL */

.pagina-banner {
    background: linear-gradient(90deg, rgba(8,121,111,0.95), rgba(18,170,155,0.85)), url("../img/banner5.jpeg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 0;
}

.pagina-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.pagina-banner p {
    font-size: 20px;
}

.pagina-conteudo {
    background: #ffffff;
    padding: 55px 0;
}

.conteudo-institucional {
    max-width: 1050px;
}

.bloco-texto {
    margin-bottom: 45px;
}

.bloco-texto h2 {
    color: #0a8f85;
    font-size: 30px;
    margin-bottom: 18px;
}

.bloco-texto h3 {
    color: #08796f;
    font-size: 22px;
    margin-bottom: 15px;
}

.bloco-texto p {
    color: #444;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.grid-missao {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 45px;
}

.card-institucional {
    background: #f7f7f7;
    border-left: 5px solid #12aa9b;
    padding: 28px;
    border-radius: 8px;
}

.card-institucional h3 {
    color: #0a8f85;
    font-size: 24px;
    margin-bottom: 12px;
}

.card-institucional p {
    color: #444;
    font-size: 17px;
    line-height: 1.65;
}

.lista-destaque {
    list-style: none;
    padding-left: 0;
}

.lista-destaque li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #444;
    font-size: 17px;
    line-height: 1.55;
}

.lista-destaque li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #12aa9b;
    font-size: 26px;
    line-height: 20px;
}

/* EXAMES MODERNO */

.exames-modern {
    padding: 50px 0;
}

.layout-exames {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.exames-modern h1 {
    color: #0a8f85;
    margin-bottom: 10px;
}

.subtitulo-exames {
    color: #0a8f85;
    font-size: 28px;
    margin: 15px 0;
}

.intro {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.busca-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.item-exame {
    border: 1px solid #e5e5e5;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.titulo {
    padding: 15px;
    background: #f8f8f8;
    cursor: pointer;
    font-weight: bold;
    color: #0a8f85;
}

.titulo:hover {
    background: #f1f1f1;
}

.conteudo {
    display: none;
    padding: 15px;
    background: #fff;
    color: #555;
}

.item-exame.ativo .conteudo {
    display: block;
}

.lateral h3 {
    margin-bottom: 15px;
    color: #0a8f85;
}

.pdf {
    display: block;
    padding: 12px;
    background: #f3f3f3;
    margin-bottom: 10px;
    text-decoration: none;
    color: #0a8f85;
}

.pdf:hover {
    background: #e9e9e9;
}

/* CONTATO */

.pagina-contato {
    padding: 60px 0;
}

.contato-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.form-contato h1 {
    color: #0a8f85;
    margin-bottom: 20px;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.linha {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

textarea {
    height: 120px;
}

.antirobo {
    margin: 15px 0;
}

.btn-enviar {
    background: #0a8f85;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
}

.btn-enviar:hover {
    background: #08796f;
}

.info-contato {
    color: #555;
    line-height: 1.6;
}

/* EQUIPE */

.pagina-equipe {
    padding: 55px 0;
    background: #fff;
}

.pagina-equipe h1 {
    color: #0a8f85;
    font-size: 38px;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.grid-equipe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 60px;
}

.membro-equipe {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.membro-equipe img {
    width: 170px;
    height: 230px;
    object-fit: cover;
    border-radius: 6px;
}

.membro-equipe h2 {
    color: #e93445;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.membro-equipe p {
    color: #444;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 4px;
}

/* TOAST SUCESSO */

.toast-sucesso {
    position: fixed;
    top: 25px;
    right: 25px;
    background: #0a8f85;
    color: white;
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 99999;
    min-width: 310px;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.35s ease;
}

.toast-sucesso.mostrar {
    opacity: 1;
    transform: translateY(0);
}

.toast-sucesso strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.toast-sucesso span {
    display: block;
    font-size: 14px;
    opacity: 0.95;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .barra-conteudo {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
    }

    .contatos-topo {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        font-size: 14px;
    }

    .resultados-online {
        width: 100%;
        justify-content: center;
    }

    .topo-conteudo {
        flex-direction: column;
        padding: 16px 0;
    }

    .logo {
        height: 100px;
        margin-bottom: 10px;
    }

    .menu {
        text-align: center;
    }

    .menu a {
        display: inline-block;
        margin: 7px 9px;
        font-size: 13px;
    }

    .carrossel {
        height: 330px;
    }

    .slide img {
        height: 330px;
    }

    .slide-texto {
        left: 8%;
        max-width: 330px;
    }

    .slide-texto h1 {
        font-size: 31px;
    }

    .slide-texto p {
        font-size: 17px;
    }

    .exames-conteudo,
    .lista-exames,
    .info-home,
    .layout-exames,
    .contato-layout,
    .grid-missao,
    .grid-equipe {
        grid-template-columns: 1fr;
    }

    .info-home {
        padding: 40px 30px;
        gap: 32px;
    }

    .whatsapp-flutuante {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-flutuante img {
        width: 42px;
        height: 42px;
    }

    .pagina-banner {
        padding: 45px 0;
    }

    .pagina-banner h1 {
        font-size: 32px;
    }

    .bloco-texto h2 {
        font-size: 26px;
    }

    .membro-equipe {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .membro-equipe img {
        margin: 0 auto;
    }

/* POLÍTICA DE PRIVACIDADE */

.bloco-texto h1 {
    color: #0a8f85;
    font-size: 38px;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 28px;
}

.bloco-texto strong {
    color: #08796f;
}
