@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
}

@supports (-webkit-touch-callout: none) {
    .hero {
        background-size: 100% auto;
        background-position: top center;
    }
}


:root {

    --cor1: #F2C12E;
    --cor2: #F2BE5C;
    --cor3: #593B02;
    --cor4: #2A7ABF;
    --cor5: #010626;
    --fundo: #0f0f0fa6;

    --fonte-menu: "Oswald", sans-serif;
    --fonte-titulo: "Anton", sans-serif;
    --fonte-geral: "Montserrat", sans-serif;

    --transition-speed: 0.4s;

}

body {
    background-color: var(--cor5);
    font-family: var(--fonte-geral);
    background-image: url(img/fundo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
    height: auto;
}

.page-home {
    padding-top: 200px;
}

.page-profissionais,
.page-planos {
    background-image: none !important;
    background-color: #000;
}

.header-container .menu {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    /* Garante que os itens fiquem alinhados se for o caso */
    align-items: center;
}

/* ===============================
   CONTROLE DE FIXAÇÃO DO HEADER
   =============================== */

.header-container {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    will-change: transform;
    z-index: 1000;
}

/* Quando vira fixo */
.header-container.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
}

/* Header visível */
.header-container.is-visible {
    transform: translateY(0);
}

/* Header escondido */
.header-container.is-hidden {
    transform: translateY(-100%);
}

/* Quando o usuário interage */
.header-container.is-interacting {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

body.menu-open {
    overflow: hidden;
}

/* Garante que o header não interfira no menu */
body.menu-open .header-container {
    transform: none !important;
}


/* Caso queira remover o box-sizing ou margens de outros elementos da nav */
nav.nav ul {
    margin: 0;
    padding: 0;
}

/* Caso queira remover o box-sizing ou margens de outros elementos da nav */

.header-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;

    background-color: #00000081;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-inner {
    grid-column: 2;

    display: flex;
    align-items: center;
    gap: 40px;
    /* distância entre logo e menu */
}


.logo {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 150px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;

    width: 100%;
    padding: 0;
    margin: 0;
}


/* --- Estilos do Hambúrguer e Menu Mobile --- */

/* Esconde os ícones de hambúrguer e fechar por padrão (desktop) */
.hamburger,
.close-icon {
    display: none;
    cursor: pointer;
    font-size: 1.8em;
    color: var(--cor1);
    /* Amarelo/Dourado */
    z-index: 1;
    /* Garante que fique por cima de tudo */
    position: fixed;
    /* Fixado no canto */
    top: 20px;
    right: 20px;
    transition: color var(--transition-speed) ease;
}

.hamburger:hover,
.close-icon:hover {
    color: var(--cor4);
    /* Azul */
}

.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 48px;
    height: 48px;
    border-radius: 50%;

    background-color: var(--cor1);
    color: #000;

    font-size: 22px;
    font-weight: bold;
    border: none;

    cursor: pointer;
    z-index: 5000;

    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);

    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Quando aparece */
.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover desktop */
@media (hover: hover) {
    .scroll-top-btn:hover {
        transform: scale(1.1);
        background-color: var(--cor4);
        color: #fff;
    }
}


/* Container que desliza */
.menu-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    /* Ocupa metade da largura da tela */
    height: 100%;
    background-color: var(--cor5);
    /* Cor de fundo escura (quase preta) */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    /* maior que qualquer header */
    transform: translateX(100%);
    /* Inicialmente fora da tela (direita) */
    transition: transform var(--transition-speed) ease;
    overflow-y: auto;
    backdrop-filter: blur(4px);
    /* Efeito sutil para harmonizar */
}

/* Estado de Abertura */
.menu-mobile.is-open {
    transform: translateX(0);
    /* Entra na tela */
}

/* Estilos dos itens do menu mobile */
.menu-mobile ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 50px;
    /* Afasta dos ícones */
}

.menu-mobile li {
    display: block;
    /* Garante que fiquem em coluna */
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-mobile li:last-child {
    border-bottom: none;
}

.menu-mobile a {
    font-size: 1.6em;
    font-weight: 500;
}

/* Estiliza o botão dentro do menu mobile */
.menu-mobile .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 30px;
    font-size: 1.2em;
}

.icone {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
}

.email img {
    width: 40px;
    margin: 14px 0 0 20px;
}

.instagram img {
    width: 32px;
    margin: 11px 0 0 20px !important;
}

.nav li {
    display: inline-block;
    padding: 10px 15px;
}

ul {
    list-style: none;
    padding-right: 0;
    text-align: center;
}

a {
    text-decoration: none;
    color: var(--cor2);
    font-family: var(--fonte-menu);
    font-weight: 300;
    font-size: 1.4em;
}

.nav .btn {
    display: inline-block;
    white-space: nowrap;
    width: 100px;
    padding: 2px;
    font-family: var(--fonte-menu);
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 15em;
    background-color: var(--cor1);
    border: 1px solid black;
    color: var(--cor5);
}

.nav a:hover {
    color: var(--cor4);
    text-decoration: underline;
    transition: 0.5s ease;
}

.nav .btn:hover {
    transform: scale(1.1);
    background-color: var(--cor4);
    ;
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: 0.5s ease;
}

.hero-section {
    margin-top: 0;
    padding: auto 0 10px;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    min-height: 100svh;
}

.bg {
    position: relative;
    width: 100%;
}

/* IMAGEM MOBILE */
.bg-mobile {
    display: none;
}

.hero-section>section>hr {
    width: 20%;
    margin: 20px auto 10px auto;
}

.hero-section h2 {
    font-size: 3.8em;
    margin-top: 30px;
    padding: 0 4%;
}

.hero-section h3 {
    padding: 5px;
    border-radius: 40px;
    font-size: 2em;
    font-weight: lighter;
    margin: 30px;
    color: white;
}

.hero-section span {
    color: var(--cor1);
}

.btn2,
.btn-matri {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    padding: 10px 40px;
    margin: 20px 10px;
    font-family: var(--fonte-menu);
    border-radius: 15em;
    font-size: 25px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.btn2 {
    background-color: var(--cor1);
    background-image: linear-gradient(120deg, #c19309 0%, #ffffffa8 50%, #dfaa0a 100%);
    background-size: 400% 400%;
    border: 1px solid var(--cor1);
    color: var(--cor5);
    animation: animagradient 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.btn-matri {
    background-color: rgba(245, 222, 179, 0);
    border: 1px solid var(--cor1);
    color: white;
}

.btn-matri:hover {
    transform: scale(1.1);
    animation-play-state: paused;

}

.btn2:hover {
    transform: scale(1.1);
    animation-play-state: running;
}

@keyframes animagradient {
    0% {
        background-position: 100% 0;
    }

    50% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}


.container-box {
    display: flex;
    width: 100vw;
    position: relative;
    margin-top: 150px;
    padding: 90px;
    background-image: linear-gradient(to bottom,
            /* Direção: De cima para baixo */
            #000000 0%,
            /* 1. Início (topo) é a cor escura */
            #010a41 50%,
            /* 2. Meio (centro) é a cor clara */
            #000000 100%
            /* 3. Fim (base) é a cor escura */
        );
    flex-direction: column;
}

.container-box h2 {
    font-family: var(--fonte-geral);
    color: var(--cor1);
}

.container-box h3 {
    font-family: var(--fonte-geral);
}

.video iframe {
    margin: auto;
    border: 2px solid var(--cor2);
    border-radius: 40px;
    display: block;
}

.btn3 {
    display: block;
    text-decoration: none;
    text-align: center;
    color: var(--cor5);
    font-weight: 500;
    text-transform: uppercase;

    width: 300px;
    padding: 10px;
    margin: 40px auto;
    font-family: var(--fonte-menu);
    border-radius: 15px;
    background-color: var(--cor1);
    border: 1px solid var(--cor1);
    font-size: 2em;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.btn3:hover {
    transform: scale(1.1);
}

.chamado h3 {
    font-size: 1.4em;
    font-weight: lighter;
}

.container-box .venha {
    font-family: var(--fonte-menu);
}


.diferencial {
    background-image: url(img/fundo2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 80svh;
    padding: 90px 5%;
    margin-bottom: 0px;
    color: white;
    text-align: center;
    z-index: 99;
}

.bg-mobile {
    display: none;
}

/* iOS FIX */
@supports (-webkit-touch-callout: none) {
    .diferencial {
        background-size: contain;
        background-position: top center;
        background-attachment: scroll;
    }
}

.diferencial h1 {
    margin-top: 20px;
    font-size: 3em;
    font-family: var(--fonte-geral);
    text-transform: uppercase;
    color: #ffffff;
}

.diferencial span {
    color: var(--cor1);
}

.linha-diferencial {
    width: 20%;
    margin: 20px auto 10px auto;
    padding: 1px;
    background-color: var(--cor1);
    border: var(--cor1);
}

/* ======= PARTE FALANDO DE NUTRIÇÃO ======*/
.nutricao {
    padding: 80px 10%;
    background: linear-gradient(180deg, #080535, #000000);
}

.nutricao-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.nutricao-texto h2 {
    color: #fff;
    font-size: 3em;
    font-family: var(--fonte-geral);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.nutricao-texto span {
    color: var(--cor1);
}

.nutricao-texto p {
    color: var(--cor1);
    font-size: 1.4rem;
    font-family: var(--fonte-menu);
    opacity: 0.85;
    line-height: 1.9;
    margin-bottom: 20px;
}

.nutricao-texto ul {
    color: #fff;
    list-style: none;
    margin-bottom: 30px;
}

.nutricao-texto ul li {
    text-align: left;
    margin-bottom: 10px;
}

.nutricao-img {
    display: flex;
    margin-left: 100px;
    justify-content: center;
}

.nutricao-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 10%;
    border: 3px solid var(--cor1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.nutricao-img img:hover {
    transform: scale(1.12) translateY(-4px);
    filter: brightness(1.05);
}

@media (max-width: 360px) {
    .nutricao {
        padding: 55px 5% 0;
    }

    .nutricao-texto h2 {
        font-size: 18px;
    }

    .nutricao-texto p {
        font-size: 18px;
    }

    .nutricao-texto ul {
        margin-left: 7%;
    }


    .nutricao-img img {
        max-width: 210px;
    }
}



@media (max-width: 430px) {
    .nutricao {
        padding: 60px 6% 0;
    }

    .nutricao-texto h2 {
        font-size: 2em;
    }

    .nutricao-texto p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .nutricao-img img {
        max-width: 240px;
    }
}


@media (max-width: 767px) {
    .nutricao {
        padding: 70px 6% 0;
    }

    .nutricao-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .nutricao-texto h2 {
        font-size: 2.2em;
    }

    .nutricao-texto p {
        font-size: 1.2rem;
    }

    .nutricao-texto ul {
        padding: 0;
    }

    .nutricao-img img {
        max-width: 280px;
    }
}



@media (max-width: 1024px) {
    .nutricao {
        padding: 70px 7% 0;
    }

    .nutricao-container {
        gap: 40px;
    }

    .nutricao-texto h2 {
        font-size: 25px;
    }

    .nutricao-texto p {
        font-size: 18px;
    }

    .nutricao-texto ul {
        margin-left: 7%;
    }

    .nutricao-img img {
        margin-right: 45%;
        max-width: 300px;
    }
}


/* ================= SLIDER CONTAINER ================= */
.treinos-deck-slider {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 0 80px;
    perspective: 1200px;
    position: relative;
}

/* ================= CARD BASE ================= */
.treino-card {
    width: 280px;
    height: 390px;

    background: linear-gradient(160deg,
            rgba(1, 6, 38, 0.96),
            rgba(15, 15, 15, 0.9));

    border: 1px solid rgba(242, 193, 46, 0.15);
    border-radius: 14px;
    padding: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.75),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);

    transition:
        transform var(--transition-speed) ease,
        box-shadow var(--transition-speed) ease,
        border-color var(--transition-speed) ease;
}

/* ================= CARD ATIVO ================= */
.swiper-slide-active.treino-card {
    transform: scale(1.08) translateZ(30px);
    border-color: var(--cor1);

    box-shadow:
        0 0 25px rgba(242, 193, 46, 0.35),
        0 25px 55px rgba(0, 0, 0, 0.85);
}

/* ================= IMAGEM ================= */
.card-image-placeholder {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;

    position: relative;
}

/* Overlay premium sobre a imagem */
.card-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0.6) 100%);
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Zoom sutil no card ativo */
.swiper-slide-active .card-image-placeholder img {
    transform: scale(1.08);
}

/* ================= TEXTO ================= */
.treino-card h3 {
    font-family: var(--fonte-titulo);
    font-size: 1.45rem;
    letter-spacing: 0.5px;
    color: var(--cor1);
    margin: 6px 0 8px;
}

.treino-card p {
    font-family: var(--fonte-geral);
    font-size: 0.85rem;
    line-height: 1.5;
    color: #cfcfcf;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* ================= BOTÃO ================= */
.details-button {
    width: 100%;
    padding: 10px 0;

    background: linear-gradient(135deg,
            var(--cor4),
            #1e5e96);

    color: #fff;
    font-size: 0.85rem;
    font-family: var(--fonte-menu);
    letter-spacing: 0.6px;
    text-transform: uppercase;

    border-radius: 6px;
    border: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.details-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 122, 191, 0.5);
    background: linear-gradient(135deg,
            #3a8fd9,
            var(--cor4));
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #2525252b;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    opacity: 1;
    max-width: 520px;
    width: 90%;
    padding: 32px;
    border-radius: 12px;
    border: solid 1px var(--cor1);
    position: relative;
    animation: modalFade 0.3s ease;
}

.modal-content h2 {
    color: var(--cor1);
    font-family: var(--fonte-titulo);
    margin-bottom: 12px;
    font-weight: 500;
}

.modal-content p {
    font-family: var(--fonte-menu);
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.3rem;
    line-height: 1.8;
}

.modal-content ul {
    color: #fff;
    text-align: left;
    padding-left: 10px;
}

.modal-content li {
    margin-bottom: 8px;
}

.modal-close {
    color: #fff;
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================= PAGINAÇÃO ================= */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: rgba(242, 193, 46, 0.35);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--cor1);
    box-shadow: 0 0 10px rgba(242, 193, 46, 0.6);
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
    .treinos-deck-slider {
        padding: 40px 0 60px;
    }

    .treino-card {
        width: 250px;
        height: 360px;
    }
}


#meio {
    grid-column: span 2;
    justify-self: center;
    max-width: 650px;
    width: 100%;
}


.localizacao {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
    padding: 80px 5%;
    margin-top: -2px;
    background-image: linear-gradient(to bottom,
            #000000 0%,
            #010a41 50%,
            #000000 100%);
    height: auto;
}

.localizacao h1 {
    font-size: 3em;
    font-family: var(--fonte-geral);
    text-transform: uppercase;
    color: white;
}

.localizacao span {
    color: var(--cor1);
}

.localizacao .fitness {
    color: var(--cor4);
}

.localizacao p {
    margin-top: 30px;
    font-family: var(--fonte-menu);
    text-transform: uppercase;
    font-size: 2em;
    color: white;
    font-weight: 300;
}

.localizacao iframe {
    display: block;
    max-width: 800px;
    width: 90%;
    height: 400px;
    margin: 40px auto;
    border-radius: 15px;
    border: 4px solid var(--cor1);
}

.btn-localizacao {
    display: block;
    background-color: var(--cor1);
    color: rgb(0, 0, 0);
    font-weight: bolder;
    margin: auto;
    border-radius: 16px;
    width: 150px;
    padding: 9px;
    transition: 2;
    transition: transform 0.3s ease;
}

.btn-localizacao:hover {
    transform: scale(1.1);
}

.link-localzacao p {
    color: var(--cor2);
    font-size: 1.2em;
    transition: transform 0.5s ease;
}

.btn-contato2 {
    margin: auto;
    padding: 7px;
    width: 200px;
    background-color: #25d366;
    /* Verde do WhatsApp */
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-contato2 img {
    margin: 5px 0 0 5px;
    align-items: center;
}

.btn-contato2:hover {
    transform: scale(1.05);
    background-color: #128c7e;
}

/* ===============================
   SEÇÃO COMENTÁRIOS / TRANSFORMAÇÕES
================================ */
.comentarios {
    display: flex;
    flex-direction: column;
    text-align: center;

    padding: 80px 5%;
    margin-top: -2px;
    background-image: linear-gradient(to bottom,
            #000000 0%,
            #010a41 50%,
            #000000 100%);
    height: auto;
}

.comentarios h1 {
    font-family: var(--fonte-geral);
    text-transform: uppercase;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.comentarios h1 .que {
    color: var(--cor1);
}

/* ===============================
   SWIPER CONTAINER
================================ */
.transformacoes-swiper {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 30px 10px 60px;
}

/* ===============================
   CARD
================================ */
.transform-card {
    background: var(--cor5);
    border-radius: 18px;
    padding: 40px 35px;
    border: solid 1px var(--cor2);
    box-shadow:
        0 0 20px rgba(251, 188, 0, 0.26),
        0 30px 50px rgba(255, 225, 0, 0.023);
    /* Sombra externa e muito difusa */
    transition: transform var(--transition-speed),
        box-shadow var(--transition-speed);
}

.transform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px #dfaa0a5e;

}

/* ===============================
   BEFORE / AFTER
================================ */
.before-after {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;

}

.img-box {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.img-box img {
    width: 100%;
    height: 540px;
    object-fit: contain;
    transition: transform var(--transition-speed);
}

.img-box:hover img {
    transform: scale(1.06);
}

/* Label Antes / Depois */
.img-box span {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--cor1), var(--cor2));
    color: var(--cor5);
    font-family: var(--fonte-menu);
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1000;
}

/* ===============================
   TEXTO
================================ */
.transform-card h3 {
    font-family: var(--fonte-menu);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.transform-card .nome {
    color: var(--cor1);
}

.transform-card p {
    font-family: var(--fonte-geral);
    font-size: 1.9rem;
    color: #ffffff;
    max-width: 680px;
    margin: auto;
    line-height: 1.6;
}

/* ===============================
   SWIPER CONTROLES
================================ */
.swiper-button-next,
.swiper-button-prev {
    color: var(--cor1);
    transition: transform var(--transition-speed),
        color var(--transition-speed);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--cor2);
    transform: scale(1.15);
}

.swiper-pagination-bullet {
    background: #aaa;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--cor1);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 768px) {
    .before-after {
        flex-direction: column;
    }

    .img-box img {
        height: 260px;
    }

    .transform-card {
        padding: 30px 22px;
    }
}

@media (max-width: 480px) {
    .comentarios {
        padding: 80px 15px;
    }

    .transform-card h3 {
        font-size: 1.3rem;
    }

    .transform-card p {
        font-size: 0.95rem;
    }
}

/* ============================
   CONTROLE DO CARROSSEL
============================ */

.carousel-item {
    text-align: center;
}

.carousel-indicators button {
    background-color: white;
}

/* --- SETAS DO CARROSSEL (BOOTSTRAP) --- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 35px;
    height: 35px;
    filter: invert(0);
    /* deixa preto */
}

/* remove qualquer fundo estranho */
.carousel-control-prev,
.carousel-control-next {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* distância lateral das setas */
.carousel-control-prev {
    left: -10px;
}

.carousel-control-next {
    right: -10px;
}

/* Responsivo */
@media (max-width: 600px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 28px;
        height: 28px;
    }

    .carousel-control-prev {
        left: -5px;
    }

    .carousel-control-next {
        right: -5px;
    }
}

.rodape {
    background-color: #000000d2;
    text-align: center;
    padding: 20px;
    font-family: var(--fonte-menu);
    background-image: none !important;
    color: #fff;
    border-top: 2px solid var(--cor2);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.rodape span {
    color: var(--cor1);
    font-weight: 600;
}

.rodape .dev {
    font-size: 0.9em;
    color: #d1d1d1;
    margin-top: 8px;
}

.rodape .dev strong {
    color: var(--cor4);
}

.rodape::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000d2;
    /* cor sólida que tampa o fundo */
    z-index: -1;
}

.rodape p:hover {
    transform: scale(1.03);
    transition: 0.3s ease;
}

/* =================================
 * BREAKPOINTS DE RESPONSIVIDADE
 * ================================= */


/* --- Dispositivos Móveis (max-width: 767px - cobre 360px, 375px, 390px) --- */

@media (max-width: 767px) {
    body {
        background-image: none !important;
        background-color: #000;

    }

    .header-container {
        position: absolute;
        justify-content: center;
        background: linear-gradient(to bottom,
                rgba(0, 8, 57, 0.85) 0%,
                rgba(0, 3, 22, 0.65) 50%,
                rgba(0, 3, 22, 0.0) 100%);
        background-color: #000000;
    }

    .header-container .menu {
        display: block;
        /* Ou flex, mas com column */
        /* Aqui você pode ajustar a cor ou tamanho da fonte se sumiu */
        color: white;
    }

    .header-container .menu li {
        padding: 10px 0;
        /* Dá um espaçamento entre os links no mobile */
    }

    .logo img {
        display: block;
        margin-top: 15px;
    }

    .hamburger,
    .close-icon {
        position: absolute !important;
        right: 30px !important;
        top: 50% !important;
        transform: translateY(-48%) !important;
    }

    /* Cabeçalho */
    .container {
        flex-direction: row;
        padding: 1em;
        justify-content: space-between;
        position: relative;
        z-index: 100;
    }


    .btn {
        display: inline-block;
        white-space: nowrap;
        width: 100px;
        padding: 5px 10px !important;
        font-family: var(--fonte-menu);
        font-size: 1.2em;
        font-weight: 500;
        text-decoration: none;
        border-radius: 15em;
        background-color: var(--cor1);
        border: 1px solid black;
        color: var(--cor5);

    }

    .btn:hover {
        transform: scale(1.1);
        background-color: var(--cor4);
        ;
        text-decoration: none;
        color: rgb(255, 255, 255);
        transition: 0.5s ease
    }

    .nav {
        margin-right: 0;
        justify-content: center;
        display: none;
    }

    .hamburger,
    .close-icon {
        display: block !important;
        position: absolute !important;
        top: 65px !important;
        right: 20px !important;
        transform: none !important;

    }

    /* Oculta o menu desktop completo para telas pequenas */
    .container .nav {
        display: none;
    }

    .nav li {
        display: block;
        /* Itens do menu em coluna */
        padding: 5px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav li:last-child {
        border-bottom: none;
    }

    .nav .btn {
        width: auto;
        padding: 5px 15px;
        font-size: 1em;
        margin-top: 10px;
    }

    a {
        font-size: 1.2em;
    }

    /* Seção Hero */
    .hero-section h2 {
        font-size: 3em;
        margin-top: 10px;
    }

    .hero-section h3 {
        font-size: 1.2em;
        margin: 15px;
    }

    .btn2,
    .btn-matri {
        display: block;
        /* Botões em coluna */
        width: 80%;
        margin: 10px auto;
        font-size: 1.1em;
        padding: 10px 20px;
    }

    /* Container Box (Vídeo) */
    .container-box {
        width: 100%;
        padding: 30px 11px;
        margin-top: 50px;
    }

    .container-box h2 {
        font-size: 1.8em;
    }

    .container-box h3 {
        font-size: 1.1em;
    }

    .video iframe {
        width: 86%;
        height: 250px;
        /* Reduz a altura para celular */
        border-radius: 15px;
    }

    .btn3 {
        width: 80%;
        font-size: 1.5em;
        padding: 10px;
        margin: 30px auto;
    }



    /* Diferencial */
    .diferencial {
        padding: 30px 0%;
        background-image: url(img/fundo-mobile2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        overflow-x: hidden;
        height: auto;
    }

    .hero-section,
    .diferencial {
        background-attachment: scroll;
        /* REMOVE parallax */
        background-position: center top;
        background-size: cover;
    }

    .diferencial h1 {
        font-size: 2.2em;
    }

    .linha-diferencial {
        width: 50%;
    }

    .card-grid {
        grid-template-columns: 1fr;
        /* Cartões em coluna única */
        gap: 20px;

        margin: 30px auto;
    }

    .card-item {
        height: auto;
        padding-bottom: 20px;
        background-color: #0000002b;
        border: 1px solid var(--cor2);

    }

    #meio {
        grid-column: span 1;
        /* Centraliza o item #meio novamente */
        max-width: 90%;
    }

    .card-item h3 {
        width: 80%;
        font-size: 1.1em;
        padding: 8px 15px;
        margin: 20px auto;
    }

    .card-item p {
        font-size: 1em;
        margin: 10px;
    }

    /* Localização */
    .localizacao {
        padding: 40px 5%;
    }

    .localizacao h1 {
        font-size: 2.5em;
    }

    .localizacao p {
        font-size: 1.2em;
    }

    .localizacao iframe {
        width: 100%;
        height: 300px;
        margin: 20px auto;
    }

    .link-localzacao,
    .link-localzacao p {
        font-size: 1.2em;
    }

    /* Rodapé */
    .rodape p {
        font-size: 0.8em;
    }
}


/* --- Tablets (min-width: 768px e max-width: 1023px) --- */

@media (min-width: 768px) and (max-width: 1023px) {
    body {
        background-image: none !important;
        background-color: #000;
    }

    .header-container {
        position: absolute;
        justify-content: center;
        background: linear-gradient(to bottom,
                rgba(0, 8, 57, 0.85) 0%,
                rgba(0, 3, 22, 0.65) 50%,
                rgba(0, 3, 22, 0.0) 100%);
        background-color: #000000;
    }

    .header-container .menu {
        display: block;
        /* Ou flex, mas com column */
        /* Aqui você pode ajustar a cor ou tamanho da fonte se sumiu */
        color: white;
    }

    .header-container .menu li {
        padding: 10px 0;
        /* Dá um espaçamento entre os links no mobile */
    }


    .logo img {
        display: block;
        margin-top: 15px;
    }

    .close-icon {
        display: block;
        right: 50px !important;
        top: 50px !important;
    }

    .hamburger {
        font-size: 40px;
        display: block;
        position: absolute !important;
        right: 40px !important;
        top: 50% !important;
        transform: translateY(-48%) !important;
    }

    .icone {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-top: 40px;
    }

    .email img {
        width: 50px;
        margin: 14px 0 0 20px;
    }

    .instagram img {
        width: 40px;
        margin: 14px 0 0 20px;
    }

    .nav {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .menu a {
        font-size: 2em !important;
    }

    .btn {
        font-size: 1.5em !important;
        padding: 10px 20px !important;
        background-color: var(--cor1);
        border-radius: 15em;
        font-family: var(--fonte-menu);
        font-weight: 500;
    }

    .btn:hover {
        transform: scale(1.1);
        background-color: var(--cor4);
        ;
        text-decoration: none;
        color: rgb(255, 255, 255);
        transition: 0.5s ease
    }


    .nav li {
        padding: 10px 10px;
    }

    /* Seção Hero */
    .hero-section h2 {
        font-size: 3.5em;
    }

    .hero-section h3 {
        font-size: 1.5em;
    }

    .btn2,
    .btn-matri {
        font-size: 1.2em;
        padding: 10px 30px;
        margin: 15px 5px;
    }

    /* Container Box (Vídeo) */
    .container-box {
        padding: 60px 50px;
    }

    .video iframe {
        width: 86%;
        max-width: 650px;
        height: 350px;
    }

    .modal-content h2 {
        font-size: 2.5em;
    }

    .modal-content p {
        font-size: 1.8em;
    }

    .modal-content ul {
        font-size: 1.8em;
    }

    .modal-close {
        font-size: 2.8em;
    }

    /* Diferencial */
    .diferencial h1 {
        font-size: 2.5em;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    #meio {
        max-width: 90%;
    }

    .card-item {
        height: 280px;
    }

    .card-item h3 {
        width: 80%;
    }

    /* Localização */
    .localizacao iframe {
        width: 80%;
        height: 350px;
    }

}

/* --- Laptops/Desktops Pequenos (min-width: 1024px e max-width: 1366px) --- */

@media (min-width: 1024px) and (max-width: 1366px) {


    /* Cabeçalho */
    .logo {
        margin-left: 50px;
    }

    .nav {
        display: block;
        margin-right: 250px;
    }

    .nav li {
        display: inline-block;
        padding: 10px 15px;
    }

    .hamburger,
    .menu-mobile,
    .close-icon {
        display: none !important;
    }

    /* Seção Hero */
    .hero-section h2 {
        font-size: 4em;
    }

    /* Container Box (Vídeo) */
    .container-box {
        padding: 70px 70px;
    }

    .container .nav {
        display: block;
    }

    .video iframe {
        max-width: 700px;
        height: 400px;
    }

    /* Diferencial */
    .card-grid {
        max-width: 1000px;
    }

    /* Localização */
    .localizacao iframe {
        max-width: 700px;
    }
}

/* --- Desktops Grandes (min-width: 1920px) --- */

@media (min-width: 1920px) {

    /* Ajustes para telas muito grandes */
    body {
        max-width: 100%;
        margin: 0 auto;
    }

    .container {
        padding: 2em 15%;
    }

    .logo {
        margin-left: 0;
    }

    .nav {
        margin-right: 0;
    }

    .hero-section {
        padding: 0px 100px;
    }

    .card-grid {
        max-width: 1400px;
    }

    .localizacao iframe {
        max-width: 900px;
        height: 500px;
    }
}

/* ======= SEÇÃO DE PLANOS ======= */
.container-planos {
    padding: 1.5em;
    margin-top: 0;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.planos-section {
    padding: 80px 5%;
    background-image: linear-gradient(to bottom,
            /* Direção: De cima para baixo */
            #000000 0%,
            /* 1. Início (topo) é a cor escura */
            #031272 50%,
            /* 2. Meio (centro) é a cor clara */
            #000000 100%
            /* 3. Fim (base) é a cor escura */
        );
    display: flex;
    justify-content: center;
}


/* Card principal */
.plano-simples {
    position: relative;
    max-width: 680px;
    width: 100%;
    padding: 45px 35px;
    border-radius: 20px;
    background: rgba(1, 6, 38, 0.85);
    backdrop-filter: blur(12px);
    text-align: center;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

/* ===== LUZ ANIMADA AO REDOR DO CARD ===== */
.plano-simples::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(120deg,
            transparent,
            var(--cor1),
            transparent,
            var(--cor4),
            transparent);
    background-size: 300% 300%;
    animation: glowBorder 6s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes glowBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* ===== TÍTULO ===== */
.headline-plano {
    font-family: var(--fonte-menu);
    font-size: 2.4rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.headline-plano span {
    color: var(--cor1);
    text-shadow: 0 0 15px rgba(242, 193, 46, 0.6);
}

/* ===== TEXTO ===== */
.texto-plano {
    font-family: var(--fonte-geral);
    font-size: 1rem;
    color: #d6d6d6;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* ===== BLOCO DE PREÇO ===== */
.bloco-preco {
    padding: 28px 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, #0c1440, #020626);
    margin-bottom: 35px;
    box-shadow: inset 0 0 25px rgba(42, 122, 191, 0.25);
}

/* Linha de preço */
.linha-preco {
    margin-bottom: 22px;
}

.label-preco {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
}

.valor-preco {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

/* Preço destaque */
.valor-preco.grande {
    font-size: 2.8rem;
    color: var(--cor1);
    text-shadow: 0 0 25px rgba(242, 193, 46, 0.6);
}

.a-partir {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 6px;
}

/* ===== BOTÃO PREMIUM ===== */
.btn2-destaque {
    display: inline-block;
    padding: 18px 42px;
    font-family: var(--fonte-menu);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    background: linear-gradient(135deg, var(--cor1), var(--cor2));
    border-radius: 50px;
    transition: var(--transition-speed);
    box-shadow: 0 15px 35px rgba(242, 193, 46, 0.5);
}

.btn2-destaque:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 25px 50px rgba(242, 193, 46, 0.7);
}

@media (max-width: 768px) {
    .headline-plano {
        font-size: 2rem;
    }

    .valor-preco.grande {
        font-size: 2.1rem;
    }

    .plano-simples {
        padding: 35px 25px;
    }

    /* Remove blur pesado */
    .plano-simples {
        backdrop-filter: none;
        background: #010626;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }

    /* Remove animação da borda */
    .plano-simples::before {
        animation: none;
        background-size: 100% 100%;
        opacity: 0.6;
    }

    /* Reduz sombras internas */
    .bloco-preco {
        box-shadow: inset 0 0 10px rgba(42, 122, 191, 0.2);
    }

    /* Reduz glow do texto */
    .valor-preco.grande {
        text-shadow: 0 0 10px rgba(242, 193, 46, 0.4);
    }
}


/* ===============================
 * ESTILOS DA SEÇÃO PROFISSIONAIS
 * =============================== */

.profissionais-section {
    text-align: center;
    padding: 80px 5%;
    /* Reutiliza o fundo com gradiente escuro/azul que você já usa */
    background-image: linear-gradient(to bottom,
            #000000 0%,
            #031272 50%,
            #000000 100%);
    color: white;
}

.profissionais-container {
    display: grid;
    /* Define 3 colunas em telas grandes, com mínimo de 260px por coluna */
    grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.titulo-secao  {
    font-size: 3em;
}

.subtitulo-secao {
    font-size: 1.4em;
    margin-top: 20px;
}

.profissional-card {
    background-color: #1f1e1ed6;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--cor2);
    /* Borda da cor secundária */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profissional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(255, 192, 3, 0.748);
    /* Sombra amarela no hover */
}

/* Estilo para a foto (em círculo) */
.foto-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--cor1);
    /* Borda amarela forte */
}

.foto-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que a imagem preencha o círculo */
    display: block;
}

.profissional-card h3 {
    font-size: 1.6em;
    color: var(--cor1);
    /* Nome em destaque */
    margin-bottom: 5px;
    font-family: var(--fonte-menu);
}

.especialidade {
    font-size: 1.1em;
    color: var(--cor4);
    /* Especialidade em azul */
    font-weight: 500;
    margin-bottom: 10px;
}

.cref {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 20px;
}

/* Estilo do botão de contato */
.btn-contato {
    display: inline-block;
    padding: 10px 25px;
    background-color: #25d366;
    /* Verde do WhatsApp */
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-contato:hover {
    transform: scale(1.05);
    background-color: #128c7e;
}

/* Responsividade (Ajuste para mobile) */
@media (max-width: 767px) {
    .profissionais-section {
        padding: 50px 3%;
    }

    .profissionais-container {
        grid-template-columns: 1fr;
        /* Em telas menores, o minmax de 300px com 1fr fará com que tenha apenas 1 coluna. */
    }

    .profissional-card {
        padding: 15px;
    }
}

/* =================================
 * ESTILOS DA SEÇÃO DE MATRÍCULA
 * (Para a página 'matricula.html')
 * ================================= */

#matriculaForm {
    /* Centraliza o formulário na página */
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;

    /* Estilo de fundo e borda baseado na sua paleta */
    background-color: rgba(1, 6, 38, 0.9);
    /* Cor5 com transparência para manter o fundo da body */
    border: 2px solid var(--cor1);
    /* Borda amarela/dourada */
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

    /* Configuração de layout */
    display: flex;
    flex-direction: column;
    color: white;
    /* Cor do texto geral do formulário */
}

#matriculaForm h2 {
    font-family: var(--fonte-menu);
    font-size: 2.2em;
    color: var(--cor1);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#matriculaForm label {
    font-family: var(--fonte-menu);
    font-size: 1.1em;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--cor2);
    /* Dourado suave para os rótulos */
}

/* Estilo para todos os campos de input, select e textarea */
#matriculaForm input[type="text"],
#matriculaForm input[type="email"],
#matriculaForm input[type="date"],
#matriculaForm input[type="tel"],
#matriculaForm input[type="datetime-local"],
#matriculaForm select,
#matriculaForm textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--cor3);
    /* Marrom escuro */
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Fundo quase transparente */
    color: white;
    font-size: 1em;
    font-family: var(--fonte-geral);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Foco nos campos */
#matriculaForm input:focus,
#matriculaForm select:focus,
#matriculaForm textarea:focus {
    border-color: var(--cor4);
    /* Azul no foco */
    outline: none;
    box-shadow: 0 0 8px rgba(42, 122, 191, 0.5);
    /* Sombra azul sutil */
}

/* Estilo específico para o SELECT (dropdown) */
#matriculaForm select {
    appearance: none;
    /* Remove o estilo padrão do SO/Navegador */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23F2C12E%22%20d%3D%22M287%20194L146%2053l-141%20141z%22%2F%3E%3C%2Fsvg%3E');
    /* Seta amarela */
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px;
    padding-right: 30px;
    /* Espaço para a seta */
}

#matriculaForm select option {
    background-color: var(--cor5);
    /* Cor de fundo das opções */
    color: white;
}

/* Estilo para a Textarea */
#matriculaForm textarea {
    resize: vertical;
    min-height: 100px;
}

/* Estilo para o Checkbox de termos */
#matriculaForm label input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    /* Aumenta o tamanho do checkbox */
    accent-color: var(--cor1);
    /* Muda a cor de fundo do checkbox */
}

#matriculaForm label:last-of-type {
    font-size: 0.9em;
    margin-top: 20px;
    align-self: center;
    /* Centraliza a linha do checkbox */
    cursor: pointer;
}

/* Estilo para o botão de Envio (Reutilizando a classe .btn2 ou criando um novo) */
#matriculaForm button[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 30px;

    /* Estilo de botão principal da sua paleta */
    background-color: var(--cor1);
    color: var(--cor5);
    font-weight: 700;
    font-family: var(--fonte-menu);
    font-size: 1.4em;
    text-transform: uppercase;

    border: none;
    border-radius: 15em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#matriculaForm button[type="submit"]:hover {
    background-color: var(--cor4);
    /* Azul no hover */
    color: white;
    transform: translateY(-2px);
}

/* --- Responsividade para Dispositivos Móveis --- */
@media (max-width: 767px) {
    #matriculaForm {
        margin: 50px 5%;
        padding: 25px;
    }

    #matriculaForm h2 {
        font-size: 1.8em;
    }

    #matriculaForm button[type="submit"] {
        font-size: 1.2em;
        padding: 12px;
    }
}

/* ============================
   CHECKBOX DOS TERMOS — MINIMALISTA
============================ */
.termos {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 25px 0;
    font-size: 15px;
    color: #333;
    flex-wrap: wrap;
    /* evita quebra feia no mobile */
}

.termos p {
    margin-bottom: 17px;
    font-size: 1.4em;
}

.termos input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
    cursor: pointer;
}

.termos label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 90%;
}

.termos a {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 17px;
    text-decoration: none;
    transition: 0.2s;
}

.termos a:hover {
    text-decoration: underline;
}

/* ============================
   MODAL MINIMALISTA — TERMOS
============================ */
.modal-termos {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.modal-termos-content {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 30px 32px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: modalFade 0.25s ease;
}

.modal-termos.active {
    display: flex;
}

/* Animação minimalista */
@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* X mais elegante */
.modal-fechar {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
}


.modal-fechar:hover {
    color: #000;
}

/* Títulos minimalistas */
.modal-termos-content h2 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #111;
    font-weight: 600;
}

/* Texto interno */
.modal-termos-content p,
.modal-termos-content li {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.modal-termos-content ol {
    margin-left: 18px;
}

.modal-termos-content ol li {
    margin-bottom: 8px;
}


/* ============================
   RESPONSIVIDADE
============================ */

/* ---- CELULARES MUITO PEQUENOS (até 360px) ---- */
@media (max-width: 360px) {
    .modal-termos {
        padding: 10px;
    }

    .modal-termos-content {
        padding: 20px;
        max-height: 85vh;
        border-radius: 12px;
    }

    .modal-termos-content h2 {
        font-size: 18px;
    }

    .modal-termos-content p,
    .modal-termos-content li {
        font-size: 14px;
    }
}

/* ---- CELULARES MÉDIOS/GRANDES (361px até 480px) ---- */
@media (max-width: 480px) {
    .modal-termos-content {
        max-width: 95%;
        padding: 24px;
    }

    .termos {
        flex-direction: row;
        gap: 6px;
    }
}

/* ---- TABLETS (481px até 768px) ---- */
@media (max-width: 768px) {
    .modal-termos-content {
        max-width: 600px;
        padding: 28px;
    }
}

/* ---- DESKTOPS COMUNS (769px até 1440px) ---- */
@media (min-width: 769px) and (max-width: 1440px) {
    .modal-termos-content {
        max-width: 560px;
    }
}

/* ---- TELAS GRANDES E TV (1441px +) ---- */
@media (min-width: 1441px) {
    .modal-termos-content {
        max-width: 700px;
        padding: 40px 48px;
    }

    .modal-termos-content h2 {
        font-size: 24px;
    }

    .modal-termos-content p,
    .modal-termos-content li {
        font-size: 17px;
    }
}