/* ============================================
    UTILITY: visually-hidden
    Esconde visualmente mas mantém pra leitores de tela
    (acessibilidade: usado nos <label> do form)
============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
    CONTAINER GLOBAL
    (reset.css agora é carregado via <link> no index.html
     pra evitar render-blocking sequencial do @import)
============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 2rem;
    box-sizing: border-box;

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding-inline: 1.5rem;
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding-inline: 1rem;
    }
}

/* ============================================
    HEADER - HERO PRINCIPAL
============================================ */
.header {
    position: relative;
    background-image: url('../images/bg--header--desk.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 2rem 0 3rem;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* ===== Glow laranja decorativo ===== */
    & .header__glow {
        position: absolute;
        right: -322px;
        bottom: 164px;
        width: 439px;
        height: 443px;
        border-radius: 50%;
        opacity: 0.8;
        background-color: #FF694F;
        filter: blur(170px);
        pointer-events: none;
        z-index: 0;
        display: none;
    }

    /* Container fica acima do glow */
    & .container {
        position: relative;
        z-index: 1;
    }

    /* ===== Grid de 2 colunas ===== */
    & .header__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        gap: 3rem;
        align-items: center;
        width: 100%;
    }

    /* ===== Logo MARPE — linha 1 da coluna esquerda ===== */
    & .header__logo {
        grid-column: 1;
        grid-row: 1;

        & img {
            display: block;
            height: auto;
            max-width: 220px;
            width: 100%;
        }
    }

    /* ===== Coluna esquerda: conteúdo — linha 2 ===== */
    & .header__col-conteudo {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 540px;
    }

    /* ===== Coluna direita: foto — ocupa as 2 linhas ===== */
    & .header__col-imagem {
        grid-column: 2;
        grid-row: 1 / 3;
        display: flex;
        justify-content: center;
        align-items: center;

        & img {
            display: block;
            max-width: 100%;
            height: auto;
            width: auto;
            max-height: 80vh;
            max-height: 80dvh;
        }
    }

    /* ===== Bloco de texto ===== */
    & .header__texto {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    /* "DOMINA LA" — eyebrow com Zalando Sans Expanded */
    & .header__eyebrow {
        font-family: "Zalando Sans Expanded", sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1.1;
        color: #04102b;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    /* ===== Título principal com gradiente ===== */
    & .header__titulo {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(2rem, 3.5vw, 2.5rem);
        font-weight: 700;
        line-height: 1.1;
        margin: 0;
        background: linear-gradient(121deg, #04102B 41.26%, #005CFF 111.2%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    /* Subtítulo com Inter */
    & .header__subtitulo {
        font-family: "Inter", sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.4;
        color: #04102b;
        margin: 0;

        & strong {
            font-weight: 700;
        }
    }

    /* ===== Formulário ===== */
    & .header__form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    /* Inputs com fundo de gradiente + glassmorphism */
    & .header__input {
        width: auto;
        padding: 0.85rem 1.5rem;
        border-radius: 24px;
        border: 1px solid rgba(4, 16, 43, 0.6);
        background: linear-gradient(136deg,
                rgba(4, 16, 43, 0.10) -16.69%,
                rgba(0, 92, 255, 0.10) 100%);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 400;
        color: #04102b;
        text-align: center;
        outline: none;
        transition: border-color 0.2s ease, background 0.2s ease;

        &::placeholder {
            color: rgba(4, 16, 43, 0.6);
        }

        &:focus {
            border-color: #163580;
            background: linear-gradient(136deg,
                    rgba(4, 16, 43, 0.15) -16.69%,
                    rgba(0, 92, 255, 0.15) 100%);
        }
    }

    /* ===== Botão verde com Zalando Sans Expanded ===== */
    & .header__btn {
        font-family: "Zalando Sans Expanded", sans-serif;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-align: center;
        color: #04102b;
        padding: 1rem 1.5rem;
        border: none;
        border-radius: 24px;
        cursor: pointer;
        background: linear-gradient(90deg, #00CC41 0%, #00FF26 50%, #00CC41 100%);
        box-shadow: 0 0 4px 0 rgba(163, 23, 53, 0.30) inset,
            0 4px 14px rgba(0, 204, 65, 0.25);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition: background 0.25s ease, transform 0.1s ease, box-shadow 0.25s ease;

        &:hover {
            background: linear-gradient(90deg, #009930 0%, #00CC1E 50%, #009931 100%);
            box-shadow: 0 0 4px 0 rgba(163, 23, 53, 0.30) inset,
                0 6px 18px rgba(0, 153, 49, 0.35);
        }

        &:active {
            background: linear-gradient(90deg, #00FF51 0%, #00FF26 50%, #00FF51 100%);
            transform: translateY(1px);
        }

        &:focus-visible {
            outline: 2px solid #04102b;
            outline-offset: 3px;
        }
    }

    /* ===== Texto legal (LGPD) com Inter ===== */
    & .header__legal {
        font-family: "Inter", sans-serif;
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.4;
        color: #04102b;
        margin: 0.75rem 0 0;
        text-align: center;
    }

    /* ===== Estados de erro de validação do form ===== */
    & .header__input--error {
        border-color: #c8102e;
        background: linear-gradient(136deg,
                rgba(200, 16, 46, 0.08) -16.69%,
                rgba(200, 16, 46, 0.10) 100%);
    }

    & .header__input--error:focus {
        border-color: #c8102e;
    }

    & .header__error {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 0.8rem;
        font-weight: 500;
        color: #c8102e;
        margin: -0.25rem 0 0 1rem;
        text-align: left;
    }

    /* ===== Estado de sucesso pós-submit ===== */
    & .header__sucesso {
        padding: 1.5rem;
        border-radius: 24px;
        background: linear-gradient(136deg,
                rgba(0, 204, 65, 0.12) -16.69%,
                rgba(0, 92, 255, 0.10) 100%);
        border: 1px solid rgba(0, 204, 65, 0.6);
        text-align: center;
    }

    & .header__sucesso-titulo {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #04102b;
        margin: 0 0 0.5rem;
    }

    & .header__sucesso-texto {
        font-family: "Inter", sans-serif;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #04102b;
        margin: 0;
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 2rem 0 2.5rem;

        & .header__grid {
            gap: 2rem;
        }

        & .header__col-conteudo {
            gap: 1.25rem;
        }

        & .header__titulo {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
        }

        & .header__subtitulo {
            font-size: 1.1rem;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        min-height: auto;
        padding: 0 0 1.5rem;

        & .header__glow {
            display: block;
            position: absolute;
            width: 280px;
            height: 280px;
            right: -140px;
            bottom: 30%;
            border-radius: 50%;
            opacity: 0.6;
            background-color: #FF694F;
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
        }

        & .header__grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto;
            gap: 0;
        }

        & .header__logo {
            grid-column: 1;
            grid-row: 1;
            display: flex;
            justify-content: center;

            & img {
                padding-top: 10px;
                max-width: 106px;
            }
        }

        & .header__col-imagem {
            grid-column: 1;
            grid-row: 2;
            margin-bottom: -1rem;

            & img {
                max-height: 45vh;
                max-height: 45dvh;
            }
        }

        & .header__col-conteudo {
            grid-column: 1;
            grid-row: 3;
            max-width: 100%;
            align-items: center;
            text-align: center;
        }

        & .header__eyebrow {
            font-size: 1.25rem;
        }

        & .header__titulo {
            font-size: 1.75rem;
        }

        & .header__subtitulo {
            font-size: 1rem;
        }

        & .header__form {
            width: 100%;
        }

        & .header__legal {
            font-size: 0.8rem;
        }
    }
}

/* ============================================
    SEÇÃO PREGUNTA - O QUE É MARPE?
============================================ */
.sec--pregunta {
    position: relative;
    background-color: #04102b;
    padding: 6rem 0;
    color: #f3f1ef;
    overflow: hidden;

    & .pregunta__glow {
        position: absolute;
        right: -150px;
        top: 50%;
        transform: translateY(-50%);
        width: 439px;
        height: 443px;
        border-radius: 50%;
        opacity: 0.8;
        background-color: #FF694F;
        filter: blur(170px);
        pointer-events: none;
        z-index: 0;
        display: none;
    }

    & .container {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    & .pregunta__titulo {

        & h2 {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700;
            line-height: 1.15;
            color: #f3f1ef;
            margin: 0;
        }
    }

    & .pregunta__card {
        position: relative;
        background-color: rgba(4, 19, 54, 0.6);
        border: 1px solid #273047;
        border-radius: 1.25rem;
        padding: 3rem 2.5rem;
        min-height: 380px;
        overflow: hidden;

        &:focus-visible {
            outline: 2px solid #f5604c;
            outline-offset: 4px;
        }
    }

    & .pregunta__indicador {
        position: absolute;
        top: 1.25rem;
        right: 1.5rem;
        font-size: 0.85rem;
        color: #d7d7d9;
        opacity: 0.5;
        font-weight: 500;
        display: inline-flex;
        gap: 0.15rem;

        & .pregunta__indicador-atual {
            color: #f5604c;
            font-weight: 700;
        }
    }

    & .pregunta__slides {
        position: relative;
        min-height: 280px;
    }

    & .pregunta__slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;

        &.is-active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        & p {
            font-family: "Inter", sans-serif;
            color: #f3f1ef;
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.5;
            margin: 0 0 1.25rem;

            &:last-child {
                margin-bottom: 0;
            }

            & strong {
                color: #f3f1ef;
                font-weight: 700;
            }

            & em {
                color: #f3f1ef;
                font-style: italic;
                font-weight: 400;
            }
        }
    }

    & .pregunta__dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    & .pregunta__dot {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        border: none;
        background-color: #273047;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
        position: relative;

        /* Touch target invisível 44x44 (WCAG / Lighthouse)
           sem mudar o tamanho visual do dot. */
        &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 44px;
            height: 44px;
            transform: translate(-50%, -50%);
        }

        &:hover {
            background-color: #a15857;
        }

        &.is-active {
            background-color: #f5604c;
            width: 1.5rem;
            border-radius: 0.5rem;
        }

        &:focus-visible {
            outline: 2px solid #f5604c;
            outline-offset: 2px;
        }
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 4rem 0;

        & .container {
            gap: 2.5rem;
        }

        & .pregunta__card {
            padding: 2.5rem 2rem;
            min-height: 340px;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 3rem 20px;

        & .pregunta__glow {
            display: block;
            top: 40%;
            left: -200px;
            right: auto;
            width: 350px;
            height: 350px;
            filter: blur(140px);
            opacity: 0.7;
        }

        & .container {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 20px 24px;
            border: 1px solid rgba(243, 241, 239, 0.2);
            border-radius: 25px;
        }

        & .pregunta__titulo h2 {
            font-family: "Bricolage Grotesque", sans-serif;
            text-align: left;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        & .pregunta__card {
            padding: 2rem 1.5rem 3.5rem;
            min-height: 380px;
            touch-action: pan-y pinch-zoom;
        }

        & .pregunta__indicador {
            display: none;
        }

        & .pregunta__dots {
            display: flex;
            position: absolute;
            bottom: 1.25rem;
            left: 0;
            right: 0;
            margin-top: 0;
        }

        & .pregunta__slide p {
            font-size: 1.05rem;
            line-height: 1.5;
        }
    }
}

/* ============================================
    ACESSIBILIDADE: prefers-reduced-motion
============================================ */
@media (prefers-reduced-motion: reduce) {
    .pregunta__slide {
        transition: opacity 0.01s linear;
        transform: none;
    }
}

/* ============================================
    SEÇÃO ESTUDOS - LINHA DO TEMPO ANIMADA
============================================ */
.sec--estudos {
    position: relative;
    background-color: #04102b;
    padding: 6rem 0;
    color: #f2f0ed;
    overflow: hidden;

    & .sec--estudos__glow {
        position: absolute;
        top: -10%;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background-color: #ff694f;
        opacity: 0.5;
        filter: blur(170px);
        mix-blend-mode: difference;
        pointer-events: none;
        z-index: 0;
    }

    & .container {
        position: relative;
        z-index: 1;
    }

    & .estudos__grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
        align-items: center;
    }

    & .estudos__intro {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    & .estudos__titulo {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(2rem, 3.2vw, 3rem);
        font-weight: 700;
        line-height: 1.1;
        color: #f2f0ed;
        margin: 0;
    }

    & .estudos__card {
        background-color: rgba(4, 19, 54, 0.5);
        border: 1px solid #273047;
        border-radius: 1rem;
        padding: 1.5rem 1.75rem;
        max-width: 90%;

        & p {
            font-family: "Inter", sans-serif;
            color: #f2f0ed;
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.6;
            margin: 0;

            & strong {
                font-family: "Inter", sans-serif;
                font-weight: 700;
            }
        }
    }

    & .estudos__timeline {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    & .estudos__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.25rem;
        align-items: stretch;
    }

    & .estudos__marker {
        position: relative;
        width: 14px;
        flex-shrink: 0;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 2px solid #f2f0ed;
            background-color: #04102b;
            box-sizing: border-box;
            z-index: 1;
        }

        &::after {
            content: '';
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: calc(100% - 14px);
            background-color: #4f5566;
        }
    }

    & .estudos__item:last-child .estudos__marker::after {
        display: none;
    }

    & .estudos__info {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        padding-bottom: 0.5rem;
    }

    & .estudos__ano {
        font-size: 1rem;
        font-weight: 400;
        color: #f2f0ed;
        opacity: 0.85;
    }

    & .estudos__quantidade {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(1.75rem, 2.5vw, 2.5rem);
        font-weight: 700;
        color: #f2f0ed;
        margin: 0;
        line-height: 1;
    }

    & .estudos__barra {
        position: relative;
        width: 100%;
        height: 8px;
        background-color: #4f5566;
        border-radius: 43px;
        margin-top: 0.75rem;
        overflow: hidden;
    }

    & .estudos__barra-fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #ff694f 0%, #a31735 100%);
        border-radius: 43px;
        transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 4rem 0;

        & .estudos__grid {
            gap: 3rem;
        }

        & .estudos__card {
            max-width: 100%;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 3rem 0 5rem;

        & .sec--estudos__glow {
            width: 350px;
            height: 350px;
            top: auto;
            bottom: -50px;
            left: auto;
            right: -100px;
            transform: none;
            opacity: 0.7;
            filter: blur(140px);
            mix-blend-mode: normal;
        }

        & .estudos__grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        & .estudos__intro {
            order: 2;
        }

        & .estudos__timeline {
            order: 1;
            gap: 1.5rem;
        }

        & .estudos__titulo {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            text-align: left;
        }

        & .estudos__quantidade {
            font-size: 1.5rem;
        }

        & .estudos__ano {
            font-size: 0.9rem;
        }

        & .estudos__card {

            & p {
                font-family: "Inter", sans-serif;
                font-size: 1.05rem;
                font-weight: 400;
                line-height: 1.5;
                color: #f3f1ef;

                & strong {
                    font-family: "Inter", sans-serif;
                    font-weight: 700;
                    color: #f3f1ef;
                }
            }
        }
    }
}

/* ============================================
    ACESSIBILIDADE: prefers-reduced-motion
============================================ */
@media (prefers-reduced-motion: reduce) {
    .estudos__barra-fill {
        transition: none;
    }
}

/* ============================================
    SEÇÃO CTA - CHAMADA PRA AÇÃO COM IMAGEM
============================================ */
.sec--CTA {
    position: relative;
    background-image: url('../images/bg--cta--desk.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #f7f7f7;
    padding: 2rem 32px 0 0;
    overflow: hidden;

    & .cta__grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
        align-items: center;
    }

    & .cta__imagem {
        display: flex;
        justify-content: center;
        align-items: center;

        & img {
            display: block;
            max-width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: contain;
        }
    }

    & .cta__conteudo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    & .cta__texto {
        font-family: "Inter", sans-serif;
        color: #04102b;
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.5;
        margin: 0;
        max-width: 540px;

        & strong {
            font-family: "Inter", sans-serif;
            font-weight: 700;
        }
    }

    & .cta__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        text-align: center;
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
        padding: 1rem 2rem;
        min-width: 360px;
        border-radius: 63px;
        border: none;
        cursor: pointer;
        background: linear-gradient(90deg, #FF694F 0%, #A31735 100%);
        box-shadow: 0 8px 20px rgba(163, 23, 53, 0.25);
        transition: background 0.25s ease,
            transform 0.1s ease,
            box-shadow 0.25s ease;

        &:hover {
            background: linear-gradient(90deg, #FF3C1A 0%, #741026 100%);
            box-shadow: 0 10px 24px rgba(116, 16, 38, 0.35);
        }

        &:active {
            background: linear-gradient(90deg, #FF9380 0%, #CE1D43 100%);
            transform: translateY(1px);
            box-shadow: 0 6px 14px rgba(206, 29, 67, 0.2);
        }

        &:focus-visible {
            outline: 3px solid #04102b;
            outline-offset: 4px;
        }
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 3.5rem 0;

        & .cta__grid {
            gap: 2.5rem;
        }

        & .cta__imagem img {
            max-height: 420px;
        }

        & .cta__texto {
            font-size: 1rem;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 2.5rem 0;

        & .cta__grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        & .cta__imagem img {
            max-height: none;
            max-width: 100%;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        & .cta__texto {
            font-family: "Inter", sans-serif;
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.5;
            color: #04102b;

            & strong {
                font-family: "Inter", sans-serif;
                font-weight: 700;
                color: #04102b;
            }
        }

        & .cta__btn {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2;
            width: auto;
            min-width: auto;
            max-width: 360px;
            padding: 0.75rem 1.5rem;
            text-align: center;
        }
    }
}

/* ============================================
    SEÇÃO PUEDE HACER - QUEM PODE FAZER A CAPACITAÇÃO
============================================ */
.sec--puede--hacer {
    position: relative;
    background-color: #04102b;
    padding: 6rem 0;
    color: #f3f1ef;
    overflow: hidden;

    & .puede__glow {
        position: absolute;
        top: -8%;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background-color: #ff694f;
        opacity: 0.6;
        filter: blur(170px);
        mix-blend-mode: difference;
        pointer-events: none;
        z-index: 0;
    }

    & .container {
        position: relative;
        z-index: 1;
    }

    & .puede__header {
        text-align: center;
        margin-bottom: 4rem;
    }

    & .puede__titulo {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(2rem, 3.2vw, 2.75rem);
        font-weight: 700;
        line-height: 1.2;
        color: #f3f1ef;
        margin: 0;
        max-width: 700px;
        margin-inline: auto;

        & strong {
            display: block;
            margin-top: 0.25rem;
            font-weight: 700;
            background: linear-gradient(90deg, #ff694f 0%, #a31735 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
    }

    & .puede__cards {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    & .puede__card {
        background-color: #041438;
        border: 1px solid #232e47;
        border-radius: 1rem;
        padding: 2.5rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease, border-color 0.3s ease;

        &:hover {
            transform: translateY(-4px);
            border-color: #ff694f;
        }
    }

    & .puede__card-titulo {
        font-family: "Zalando Sans Expanded", sans-serif;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1.2;
        color: #f3f1ef;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    & .puede__card-texto {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #f3f1ef;
        margin: 0;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(243, 241, 239, 0.15);
    }

    & .puede__card-destaque {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5;
        color: #f3f1ef;
        margin: 0;
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 4rem 0;

        & .puede__header {
            margin-bottom: 3rem;
        }

        & .puede__cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        & .puede__card {
            padding: 2rem 1.5rem;
            gap: 1.25rem;
        }

        & .puede__card-titulo {
            font-size: 1.25rem;
        }

        & .puede__card-texto,
        & .puede__card-destaque {
            font-size: 0.9rem;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 3rem 0;

        & .puede__glow {
            width: 350px;
            height: 350px;
            opacity: 0.5;
        }

        & .puede__header {
            margin-bottom: 2rem;
            padding: 0 0.5rem;
        }

        & .puede__titulo {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;

            & strong {
                font-family: "Bricolage Grotesque", sans-serif;
                font-size: 2rem;
                font-weight: 700;
                line-height: 1.2;
            }
        }

        & .puede__cards {
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        & .puede__card {
            padding: 2rem 1.5rem;
        }

        & .puede__card-titulo {
            font-family: "Zalando Sans Expanded", sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.2;
            text-transform: uppercase;
        }

        & .puede__card-texto {
            font-family: "Inter", sans-serif;
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.5;
        }

        & .puede__card-destaque {
            font-family: "Inter", sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.5;
        }
    }
}

/* ============================================
    SEÇÃO ONLINE - FAIXA DE DESTAQUE
============================================ */
.sec--online {
    background-color: #a31735;
    padding: 1.5rem 0;
    color: #f3f1ef;

    & .online__faixa {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }

    & .online__faixa img {
        width: 56px;
        height: auto;
        flex-shrink: 0;
    }

    & .online__texto {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.3;
        color: #f3f1ef;
        margin: 0;
        text-align: left;
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 1.25rem 0;

        & .online__faixa {
            gap: 1.25rem;
        }

        & .online__texto {
            font-size: 1.1rem;
        }

        & .online__faixa img {
            width: 48px;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 1.25rem 0;

        & .online__faixa {
            gap: 1rem;
            flex-direction: row;
            align-items: center;
        }

        & .online__faixa img {
            width: 40px;
        }

        & .online__texto {
            font-size: 0.95rem;
            text-align: left;
        }
    }
}

/* ============================================
    SEÇÃO QUE APRENDERÁS - GRID DE BENEFÍCIOS
============================================ */
.sec--que--aprenderas {
    background-color: #f2f0ed;
    padding: 6rem 0;
    color: #04102b;

    & .aprenderas__header {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 900px;
        margin-inline: auto;
    }

    & .aprenderas__titulo {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        line-height: 1.2;
        color: #04102b;
        margin: 0 0 1.5rem;

        & strong {
            display: block;
            margin-top: 0.25rem;
            font-weight: 700;
            background: linear-gradient(90deg, #ff694f 0%, #a31735 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
    }

    & .aprenderas__descricao {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #04102b;
        margin: 0 0 2rem;

        & strong {
            font-family: "Inter", sans-serif;
            font-weight: 700;
        }
    }

    & .aprenderas__intro {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #04102b;
        margin: 0;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(4, 16, 43, 0.15);
        max-width: 400px;
        margin-inline: auto;
    }

    & .aprenderas__cards {
        list-style: none;
        padding: 0;
        margin: 0 0 3rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    & .aprenderas__card {
        background-color: #f2f0ed;
        border: 1px solid rgba(4, 16, 43, 0.15);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
        transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;

        &:hover {
            border-color: #ff694f;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(163, 23, 53, 0.08);
        }

        & img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            flex-shrink: 0;
        }

        & p {
            font-family: "Inter", sans-serif;
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.5;
            color: #04102b;
            margin: 0;

            & strong {
                font-family: "Inter", sans-serif;
                font-weight: 700;
            }
        }
    }

    & .aprenderas__cta {
        display: flex;
        justify-content: center;
    }

    & .aprenderas__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        text-align: center;
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
        padding: 1rem 2rem;
        min-width: 360px;
        border-radius: 63px;
        border: none;
        cursor: pointer;
        background: linear-gradient(90deg, #ff694f 0%, #a31735 100%);
        box-shadow: 0 8px 20px rgba(163, 23, 53, 0.25);
        transition: background 0.25s ease,
            transform 0.1s ease,
            box-shadow 0.25s ease;

        &:hover {
            background: linear-gradient(90deg, #ff3c1a 0%, #741026 100%);
            box-shadow: 0 10px 24px rgba(116, 16, 38, 0.35);
        }

        &:active {
            background: linear-gradient(90deg, #ff9380 0%, #ce1d43 100%);
            transform: translateY(1px);
            box-shadow: 0 6px 14px rgba(206, 29, 67, 0.2);
        }

        &:focus-visible {
            outline: 3px solid #04102b;
            outline-offset: 4px;
        }
    }

    & .aprenderas__check {
        display: none;
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 4rem 0;

        & .aprenderas__cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }

        & .aprenderas__card {
            padding: 1.75rem 1.25rem;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 3rem 0;

        & .aprenderas__header {
            margin-bottom: 2rem;
            padding: 0 0.5rem;
        }

        & .aprenderas__titulo {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;

            & strong {
                font-family: "Bricolage Grotesque", sans-serif;
                font-size: 2rem;
                font-weight: 700;
                line-height: 1.2;
            }
        }

        & .aprenderas__descricao {
            font-family: "Inter", sans-serif;
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.5;

            & strong {
                font-family: "Inter", sans-serif;
                font-weight: 700;
            }
        }

        & .aprenderas__intro {
            font-family: "Inter", sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.5;
        }

        & .aprenderas__cards {
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        & .aprenderas__card {
            background-color: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
            flex-direction: row;
            align-items: flex-start;
            gap: 0;
            text-align: left;

            &:hover {
                transform: none;
                box-shadow: none;
                border: none;
            }

            & img {
                display: none;
            }

            & p {
                font-family: "Inter", sans-serif;
                font-size: 1.05rem;
                font-weight: 400;
                line-height: 1.5;
                text-align: center;
                width: 100%;

                & strong {
                    font-family: "Inter", sans-serif;
                    font-weight: 700;
                }
            }
        }

        & .aprenderas__check {
            display: inline;
            margin-right: 0.4rem;
        }

        & .aprenderas__btn {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2;
            width: 100%;
            min-width: auto;
            max-width: 360px;
            padding: 0.75rem 1.5rem;
            text-align: center;
        }
    }
}

/* ============================================
    SEÇÃO MÓDULOS - SCROLL STICKY COM TROCA DE CONTEÚDO
============================================ */
.sec--modulos {
    position: relative;
    background-color: #04102b;
    background-image: url('../images/bg--ellipse--modulos.webp');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto 95%;
    padding-top: 4rem;

    & .modulos__titulo {
        font-family: "Bricolage Grotesque", sans-serif;
        text-align: center;
        color: #f2f0ed;
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin: 0 auto 2.5rem;
        font-weight: 700;
        padding: 0 1rem;
        position: relative;
        z-index: 1;
    }

    & .modulos__scroll {
        position: relative;
        height: calc(100vh * 5);
        height: calc(100dvh * 5);
    }

    & .modulos__sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        height: 100dvh;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 3rem;
        padding: 2rem;
        box-sizing: border-box;
        overflow: hidden;
    }

    & .modulos__numeros {
        list-style: none;
        padding: 0;
        margin: 0;
        padding-top: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        flex-shrink: 0;
    }

    & .modulos__numero {
        background-color: #041336;
        border: 1.5px solid #a15857;
        cursor: pointer;
        font-family: inherit;
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #f2f0ed;
        font-size: 1.15rem;
        font-weight: 600;
        transition: all 0.4s ease;

        &:hover {
            border-color: #f5604c;
        }

        &:focus-visible {
            outline: 2px solid #f5604c;
            outline-offset: 2px;
        }

        &.is-active {
            border-color: #a15857;
            color: #f2f0ed;
            box-shadow: 0 0 0 4px #273047;
            transform: scale(1.1);
        }
    }

    & .modulos__paineis {
        position: relative;
        flex: 1;
        max-width: 800px;
        height: 100%;
        max-height: 75vh;
        max-height: 75dvh;
        border: 1px solid #273047;
        border-radius: 1rem;
        background-color: rgba(4, 19, 54, 0.6);
        overflow: hidden;
    }

    & .modulos__painel {
        position: absolute;
        inset: 0;
        padding: 2rem 2.25rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;

        &.is-active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        scrollbar-width: thin;
        scrollbar-color: #273047 transparent;

        &::-webkit-scrollbar {
            width: 6px;
        }

        &::-webkit-scrollbar-track {
            background: transparent;
        }

        &::-webkit-scrollbar-thumb {
            background: #273047;
            border-radius: 3px;
        }
    }

    & .modulos__painel-header {
        padding-bottom: 1rem;
        margin-bottom: 1.25rem;
        border-bottom: 1px solid rgba(215, 215, 217, 0.15);

        & h3 {
            font-family: "Inter", sans-serif;
            color: #f5604c;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
            line-height: 1.2;
        }
    }

    & .modulos__meta {
        font-family: "Inter", sans-serif;
        color: #d7d7d9;
        font-size: 0.85rem;
        font-weight: 400;
        margin: 0;
        opacity: 0.8;
    }

    & .modulos__aulas {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;

        & li {
            font-family: "Inter", sans-serif;
            display: grid;
            grid-template-columns: 1.25rem 1fr;
            gap: 0.85rem;
            color: #d7d7d9;
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.4;
            padding: 0.5rem 0;
            border-bottom: 1px dashed rgba(215, 215, 217, 0.1);

            &:last-child {
                border-bottom: none;
            }
        }

        & .num {
            font-family: "Inter", sans-serif;
            color: #ff694f;
            font-weight: 600;
            text-align: left;
        }
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        background-size: auto 80%;

        & .modulos__sticky {
            gap: 2rem;
            padding: 2rem;
        }

        & .modulos__numeros {
            gap: 1.5rem;
            padding-top: 2rem;
        }

        & .modulos__numero {
            width: 3rem;
            height: 3rem;
            font-size: 1.05rem;
        }

        & .modulos__painel {
            padding: 2rem 2.25rem;
        }

        & .modulos__painel-header h3 {
            font-size: 1.75rem;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {

        /* No mobile a ellipse decorativa nem é visível direito —
           remove o download de ~1.1 MB que não agrega nada. */
        background-image: none;

        & .modulos__titulo {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
            text-align: left;
        }

        & .modulos__sticky {
            gap: 1rem;
            padding: 1.5rem 1rem;
        }

        & .modulos__numeros {
            gap: 1rem;
            padding-top: 1.5rem;
        }

        & .modulos__numero {
            /* Touch target mínimo 48x48 (Lighthouse / WCAG) */
            width: 3rem;
            height: 3rem;
            font-family: "Inter", sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
        }

        & .modulos__paineis {
            max-height: 80vh;
            max-height: 80dvh;
        }

        & .modulos__painel {
            padding: 1.5rem;
        }

        & .modulos__painel-header {

            & h3 {
                font-family: "Inter", sans-serif;
                font-size: 1.5rem;
                font-weight: 700;
                line-height: 1.2;
                background: linear-gradient(90deg, #FF694F 0%, #A31735 100%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                color: transparent;
            }
        }

        & .modulos__meta {
            font-family: "Inter", sans-serif;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.4;
        }

        & .modulos__aulas {

            & li {
                font-family: "Inter", sans-serif;
                font-size: 1.05rem;
                font-weight: 400;
                line-height: 1.4;
            }

            & .num {
                font-family: "Inter", sans-serif;
                font-size: 1.05rem;
                font-weight: 400;
                color: #FF694F;
            }
        }
    }
}

/* ============================================
    ACESSIBILIDADE: prefers-reduced-motion
============================================ */
@media (prefers-reduced-motion: reduce) {
    .modulos__scroll {
        height: auto;
    }

    .modulos__sticky {
        position: static;
        height: auto;
        flex-direction: column;
    }

    .modulos__painel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-bottom: 2rem;
    }
}

/* ============================================
    SEÇÃO CERTIFICADO - INSTITUIÇÃO QUE AVALIA
============================================ */
.sec--certificado {
    background-color: #f2f0ed;
    padding: 5rem 0;
    color: #04102b;

    & .certificado__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    & .certificado__conteudo {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    & .certificado__titulo {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        line-height: 1.1;
        margin: 0;
        background: linear-gradient(90deg, #FF694F 0%, #A31735 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    & .certificado__texto {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.6;
        color: #04102b;
        margin: 0;
    }

    & .certificado__imagem {
        display: flex;
        justify-content: center;
        align-items: center;

        & img {
            display: block;
            max-width: 100%;
            height: auto;
            max-height: 360px;
            object-fit: contain;
        }
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 4rem 0;

        & .certificado__grid {
            gap: 2.5rem;
        }

        & .certificado__imagem img {
            max-height: 300px;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 3rem 0;

        & .certificado__grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        & .certificado__conteudo {
            text-align: center;
            order: 1;
        }

        & .certificado__titulo {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        & .certificado__texto {
            font-family: "Inter", sans-serif;
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.5;
        }

        & .certificado__imagem {
            order: 2;

            & img {
                max-height: 280px;
            }
        }
    }
}

/* ============================================
    SEÇÃO RAYANE PINTO - APRESENTAÇÃO DA EXPERT
============================================ */
.sec--rayane--pinto {
    background-color: #f2f0ed;
    padding: 5rem 0;
    color: #04102b;

    & .rayane__header {
        margin-bottom: 3rem;
    }

    & .rayane__titulo-secao {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        line-height: 1.2;
        color: #04102b;
        margin: 0;

        & strong {
            font-weight: 700;
        }
    }

    & .rayane__grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3rem;
        align-items: start;
    }

    & .rayane__imagem {

        & img {
            display: block;
            width: 100%;
            height: auto;
            max-width: 460px;
            border-radius: 1rem;
            object-fit: cover;
        }
    }

    & .rayane__conteudo {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    & .rayane__identidade {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    & .rayane__redes {
        order: 2;
        list-style: none;
        padding: 0;
        margin: 0.75rem 0 0;
        display: flex;
        gap: 0.75rem;
    }

    & .rayane__bio {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 1rem;

        & p {
            font-family: "Inter", sans-serif;
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.6;
            color: #04102b;
            margin: 0;
        }
    }

    & .rayane__eyebrow {
        font-family: "Zalando Sans Expanded", sans-serif;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #04102b;
        margin: 0;
    }

    & .rayane__nome {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(2rem, 3vw, 2.5rem);
        font-weight: 700;
        line-height: 1.1;
        margin: 0;
        background: linear-gradient(90deg, #ff694f 0%, #a31735 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    & .rayane__rede {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        text-decoration: none;
        transition: transform 0.2s ease, opacity 0.2s ease;

        &:hover {
            transform: translateY(-2px);
            opacity: 0.75;
        }

        &:focus-visible {
            outline: 2px solid #f5604c;
            outline-offset: 3px;
            border-radius: 4px;
        }
    }

    & .rayane__rede-icon--desk {
        display: block;
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    & .rayane__rede-icon--mobile {
        display: none;
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 4rem 0;

        & .rayane__grid {
            gap: 2rem;
        }

        & .rayane__bio p {
            font-size: 0.9rem;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 3rem 0;

        & .rayane__header {
            margin-bottom: 2rem;
            text-align: center;
        }

        & .rayane__titulo-secao {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;

            & strong {
                font-family: "Bricolage Grotesque", sans-serif;
                font-weight: 700;
            }
        }

        & .rayane__grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        & .rayane__imagem {
            display: flex;
            justify-content: center;

            & img {
                max-width: 320px;
                width: 100%;
                border-radius: 1rem;
            }
        }

        & .rayane__conteudo {
            text-align: center;
            align-items: center;
        }

        & .rayane__identidade {
            order: 0;
            align-items: center;
        }

        & .rayane__bio {
            order: 0;
            margin-top: 0;

            & p {
                font-family: "Inter", sans-serif;
                font-size: 1.05rem;
                font-weight: 400;
                line-height: 1.6;
            }
        }

        & .rayane__redes {
            order: 0;
            margin-top: 1.5rem;
            justify-content: center;
            gap: 1rem;
        }

        & .rayane__eyebrow {
            font-family: "Zalando Sans Expanded", sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        & .rayane__nome {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        & .rayane__rede {
            width: 60px;
            height: 60px;

            &:hover {
                transform: translateY(-2px);
            }
        }

        & .rayane__rede-icon--desk {
            display: none;
        }

        & .rayane__rede-icon--mobile {
            display: block;
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
    }
}

/* ============================================
    SEÇÃO CTA SEGUNDA - BANNER GIGANTE CLICÁVEL
============================================ */
.sec--CTA--seg {
    & .cta-seg__link {
        display: block;
        text-decoration: none;
        background: linear-gradient(126deg, #FF694F -11.56%, #A31735 100.03%);
        padding: 3rem 0;
        transition: filter 0.3s ease;

        &:hover {
            filter: brightness(1.05);
        }

        &:active {
            filter: brightness(0.95);
        }

        &:focus-visible {
            outline: 3px solid #04102b;
            outline-offset: -3px;
        }
    }

    & .cta-seg__conteudo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        text-align: center;
    }

    & .cta-seg__logo {
        width: 100px;
        height: auto;
        display: block;
    }

    & .cta-seg__texto {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        font-weight: 700;
        line-height: 1.1;
        color: #ffffff;
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        & .cta-seg__link {
            padding: 2.5rem 0;
        }

        & .cta-seg__logo {
            width: 90px;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        & .cta-seg__link {
            padding: 2.5rem 0;
        }

        & .cta-seg__logo {
            width: 80px;
        }

        & .cta-seg__texto {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.1;
        }
    }
}

/* ============================================
    SEÇÃO CONTACTO - SUPORTE COM WHATSAPP
============================================ */
.sec--contacto {
    background-color: #f2f0ed;
    padding: 5rem 0;
    color: #04102b;

    & .contacto__conteudo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        max-width: 600px;
        margin: 0 auto;
    }

    & .contacto__titulo {
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        line-height: 1.2;
        color: #04102b;
        margin: 0;
    }

    & .contacto__subtitulo {
        font-family: "Zalando Sans Expanded", sans-serif;
        font-size: 1.1rem;
        font-weight: 400;
        letter-spacing: 0.02em;
        color: #04102b;
        margin: 0;
        text-transform: uppercase;
    }

    & .contacto__texto {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #04102b;
        margin: 0.5rem 0 1.5rem;
    }

    & .contacto__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        text-decoration: none;
        text-align: center;
        font-family: "Bricolage Grotesque", sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
        padding: 1rem 2rem;
        min-width: 360px;
        border-radius: 63px;
        cursor: pointer;
        background: linear-gradient(90deg, #ff694f 0%, #a31735 100%);
        box-shadow: 0 8px 20px rgba(163, 23, 53, 0.25);
        transition: background 0.25s ease,
            transform 0.1s ease,
            box-shadow 0.25s ease;

        & img {
            width: 24px;
            height: 24px;
        }

        & span {
            font-family: "Bricolage Grotesque", sans-serif;
            text-decoration: underline;
        }

        &:hover {
            background: linear-gradient(90deg, #ff3c1a 0%, #741026 100%);
            box-shadow: 0 10px 24px rgba(116, 16, 38, 0.35);
        }

        &:active {
            background: linear-gradient(90deg, #ff9380 0%, #ce1d43 100%);
            transform: translateY(1px);
        }

        &:focus-visible {
            outline: 3px solid #04102b;
            outline-offset: 4px;
        }
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 4rem 0;
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 3rem 0;

        & .contacto__titulo {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        & .contacto__subtitulo {
            font-family: "Zalando Sans Expanded", sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        & .contacto__texto {
            font-family: "Inter", sans-serif;
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.5;
        }

        & .contacto__btn {
            font-family: "Bricolage Grotesque", sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2;
            width: auto;
            min-width: auto;
            max-width: 360px;
            padding: 0.75rem 1.25rem;
            gap: 0.5rem;

            & span {
                font-family: "Bricolage Grotesque", sans-serif;
                text-decoration: underline;
                font-size: 1.25rem;
            }
        }
    }
}

/* ============================================
    FOOTER - RODAPÉ INSTITUCIONAL
============================================ */
.footer {
    background-color: #04102b;
    padding: 2rem 0;
    color: #f3f1ef;

    & .footer__conteudo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    & .footer__info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    & .footer__direitos {
        font-family: Arial, sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 0.975;
        color: #f3f1ef;
        margin: 0;
    }

    & .footer__links {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: Arial, sans-serif;
        font-size: 0.75rem;
        font-style: italic;
        font-weight: 400;
        line-height: 0.975;
        color: #f3f1ef;

        & a {
            font-family: Arial, sans-serif;
            color: #f3f1ef;
            text-decoration: none;
            font-style: italic;
            transition: color 0.2s ease;

            &:hover {
                color: #ff694f;
                text-decoration: underline;
            }
        }

        & span {
            color: rgba(243, 241, 239, 0.5);
        }
    }

    & .footer__logo {

        & img {
            display: block;
            width: 180px;
            height: auto;
        }
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
        padding: 2rem 0;

        & .footer__logo img {
            width: 160px;
        }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
        padding: 2.5rem 0;

        & .footer__conteudo {
            flex-direction: column-reverse;
            gap: 1.5rem;
            align-items: center;
            text-align: center;
        }

        & .footer__info {
            align-items: center;
        }

        & .footer__direitos {
            font-family: Arial, sans-serif;
            font-size: 1rem;
            font-weight: 400;
            line-height: 0.975;
            color: #f3f1ef;
        }

        & .footer__links {
            font-family: Arial, sans-serif;
            font-size: 0.625rem;
            font-style: italic;
            font-weight: 400;
            line-height: 0.975;
            flex-wrap: wrap;
            justify-content: center;
            color: #f3f1ef;

            & a {
                color: #f3f1ef;
                font-family: Arial, sans-serif;
                font-size: 0.625rem;
                font-style: italic;
            }

            & span {
                color: #f3f1ef;
            }
        }

        & .footer__logo img {
            width: 140px;
        }
    }
}