/* =====================================================
   CURSO NAIL DESIGNER
   PREMIUM LANDING PAGE
   PARTE 1
===================================================== */
/*======================
    GOOGLE FONT
======================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================
      VARIÁVEIS
=======================*/
:root {
    --rosa: #ff4fa2;
    --rosa-claro: #ffd8ea;
    --rosa-escuro: #d81b73;
    --dourado: #d4af37;
    --dourado-claro: #f8e7a3;
    --preto: #1a1a1a;
    --cinza: #555;
    --cinza-claro: #f5f5f5;
    --branco: #ffffff;
    --glass: rgba(255, 255, 255, .18);
    --shadow:
        0 15px 35px rgba(0, 0, 0, .12);
    --radius: 20px;
    --transition: .35s ease;
}

/*======================
        RESET
=======================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top left, #ffeaf5 0%, #ffffff 45%, #fff7e4 100%);
    color: var(--preto);
    overflow-x: hidden;
}

/*======================
      SCROLLBAR
=======================*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--rosa), var(--dourado));
    border-radius: 50px;
}

/*======================
      ELEMENTOS
=======================*/
img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;

}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

section {
    padding: 100px 0;
}

/*======================
      TÍTULOS
=======================*/
h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
}

h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 24px;
}

p {
    color: var(--cinza);
    line-height: 1.8;
}

/*======================
     HEADER PREMIUM
=======================*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--rosa);
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: #222;
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover {
    color: var(--rosa);
}

/*======================
     BOTÃO MENU
=======================*/
.btn-menu {
    background: linear-gradient(135deg, var(--rosa), var(--dourado));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    transition: .4s;
    box-shadow: 0 12px 25px rgba(255, 79, 162, .35);
}

.btn-menu:hover {
    transform: translateY(-4px);
}

/*======================
        HERO
=======================*/
.hero {
    padding-top: 170px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.hero span {
    color: var(--rosa);
}

.tag {
    display: inline-block;
    background: rgba(255, 79, 162, .12);
    color: var(--rosa);
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero p {
    margin: 35px 0;
    font-size: 18px;
}

.hero ul {
    display: grid;
    gap: 15px;
    margin-bottom: 45px;
}

.hero li {
    font-size: 18px;
}

/*======================
   BOTÃO PRINCIPAL
=======================*/
.btn-principal {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 42px;
    border-radius: 60px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rosa), var(--dourado));
    box-shadow:
        0 20px 40px rgba(255, 79, 162, .35);
    transition: .4s;
}

.btn-principal:hover {
    transform: translateY(-6px);
    box-shadow:
        0 30px 60px rgba(255, 79, 162, .45);
}

.btn-principal::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background:
        rgba(255, 255, 255, .35);
    transform: skewX(-25deg);
    transition: .8s;
}

.btn-principal:hover::before {
    left: 140%;
}

/*======================
      HERO IMAGE
=======================*/
.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 35px;
    box-shadow:
        0 40px 70px rgba(0, 0, 0, .15);
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 40px;
    background:
        linear-gradient(135deg,
            rgba(255, 79, 162, .15),
            rgba(212, 175, 55, .15));
    z-index: -1;
}

/*======================
      BENEFÍCIOS
=======================*/
.cards {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, .42);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: .45s;
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-12px);
}

.card h3 {
    margin-bottom: 18px;
    color: var(--rosa);
}

.card p {
    font-size: 15px;
}

/*======================
     GLASS BOX
=======================*/
.glass {
    background: rgba(255, 255, 255, .20);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 30px;
}

/*======================
      ANIMAÇÕES
=======================*/
@keyframes subir {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes flutuar {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-image {
    animation: flutuar 5s infinite ease-in-out;
}

.hero-text {
    animation: subir 1s ease;
}

.btn-principal {
    animation: pulse 2.8s infinite;
}

/*======================
      SEPARADOR
=======================*/
.wave {
    width: 100%;
    margin-top: -5px;
}

/*======================
      RESPONSIVO
=======================*/
@media(max-width:1100px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero ul {
        justify-content: center;
    }
    nav {
        display: none;
    }
}

@media(max-width:768px) {
    section {
        padding: 70px 0;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 32px;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .hero {
        padding-top: 130px;
    }
    .btn-principal {
        width: 100%;
    }
}

@media(max-width:480px) {
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 28px;
    }
    p {
        font-size: 15px;
    }
    .logo {
        font-size: 22px;
    }
}

/*======================================================
            SOBRE - PREMIUM
======================================================*/
.sobre {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #fff 0%,
            #fff8fc 100%);
}

.sobre::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background:
        radial-gradient(circle,
            rgba(255, 79, 162, .12),
            transparent 70%);
    top: -180px;
    left: -180px;
    border-radius: 50%;
    pointer-events: none;
}

.sobre::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background:
        radial-gradient(circle,
            rgba(212, 175, 55, .10),
            transparent 70%);
    right: -150px;
    bottom: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/*==========================
      FOTO PROFESSORA
===========================*/
.sobre-grid img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow:
        0 35px 70px rgba(0, 0, 0, .12);
    transition: .5s;
}

.sobre-grid img:hover {
    transform:
        scale(1.03) rotate(-1deg);
}

/*==========================
       TEXTO
===========================*/
.sobre-grid h2 {
    text-align: left;
    margin-bottom: 30px;
    color: var(--preto);
    position: relative;
}

.sobre-grid h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 90px;
    height: 5px;
    border-radius: 20px;
    background:
        linear-gradient(90deg,
            var(--rosa),
            var(--dourado));
}

.sobre-grid p {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}

/*==========================
      CAIXA GLASS
===========================*/
.sobre-grid>div:last-child {
    background:
        rgba(255, 255, 255, .45);
    backdrop-filter: blur(18px);
    border:
        1px solid rgba(255, 255, 255, .6);
    padding: 50px;
    border-radius: 30px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .08);
    transition: .4s;
}

.sobre-grid>div:last-child:hover {
    transform: translateY(-8px);
}

/*==========================
      DESTAQUES
===========================*/
.sobre-destaques {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.sobre-item {
    background: white;
    border-radius: 20px;
    padding: 22px;
    text-align: center;
    box-shadow:
        0 12px 25px rgba(0, 0, 0, .08);
    transition: .35s;
}

.sobre-item:hover {
    transform: translateY(-8px);

}

.sobre-item h3 {
    font-size: 30px;
    color: var(--rosa);
    margin-bottom: 10px;
}

.sobre-item span {
    font-size: 14px;
    color: #777;
}

/*==========================
      LISTA
===========================*/
.sobre-lista {
    margin-top: 35px;
}

.sobre-lista li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 16px;
}

.sobre-lista li i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    color: white;
    font-style: normal;
    font-size: 15px;
}

/*==========================
     SELO EXPERIÊNCIA
===========================*/
.selo-professora {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 12px 22px;
    border-radius: 50px;
    background:
        linear-gradient(135deg,
            rgba(255, 79, 162, .10),
            rgba(212, 175, 55, .10));
    border:
        1px solid rgba(255, 255, 255, .5);
}

.selo-professora strong {
    color: var(--rosa);
}

/*==========================
       BOTÃO
===========================*/
.btn-sobre {
    display: inline-block;
    margin-top: 35px;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    transition: .4s;
    box-shadow:
        0 20px 40px rgba(255, 79, 162, .25);
}

.btn-sobre:hover {
    transform:
        translateY(-5px);
}

/*==========================
      ANIMAÇÃO
===========================*/
.sobre-grid {
    animation:
        subir 1s ease;
}

/*==========================
      RESPONSIVO
===========================*/
@media(max-width:1100px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sobre-grid h2 {
        text-align: center;
    }
    .sobre-grid h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .sobre-grid>div:last-child {
        padding: 40px;
    }
    .sobre-lista li {
        justify-content: center;
    }
}

@media(max-width:768px) {
    .sobre {
        padding: 80px 0;
    }
    .sobre-grid {
        gap: 45px;
    }
    .sobre-destaques {
        grid-template-columns: 1fr;
    }
    .sobre-grid>div:last-child {
        padding: 30px;
    }
}

@media(max-width:480px) {
    .sobre-grid p {
        font-size: 15px;
    }
    .sobre-grid h2 {
        font-size: 30px;
    }
    .sobre-item h3 {
        font-size: 26px;
    }
    .btn-sobre {
        width: 100%;
        text-align: center;
    }
}

/*======================================================
                    MÓDULOS PREMIUM
======================================================*/
.modulos {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff7fc 0%, #ffffff 100%);
}

/* Fundo decorativo */
.modulos::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(circle,
            rgba(255, 79, 162, .08),
            transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    pointer-events: none;
}

.modulos::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(circle,
            rgba(212, 175, 55, .08),
            transparent 70%);
    left: -180px;
    bottom: -180px;
    border-radius: 50%;
    pointer-events: none;
}

/*=================================
        TÍTULO
=================================*/
.section-title {
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background:
        rgba(255, 79, 162, .12);
    color: var(--rosa);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title h2 {
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
}

/*=================================
        GRID
=================================*/
.modulos-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

/*=================================
        CARD
=================================*/
.modulo {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 28px;
    background:
        rgba(255, 255, 255, .45);
    backdrop-filter: blur(18px);
    border:
        1px solid rgba(255, 255, 255, .65);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .08);
    transition: .45s;
}

.modulo:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, .12);
}

/*=================================
      NÚMERO GIGANTE
=================================*/
.numero {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 85px;
    font-weight: 800;
    color: rgba(255, 79, 162, .06);
    user-select: none;
    pointer-events: none;
}

/*=================================
        ÍCONE
=================================*/
.icone {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 34px;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    color: white;
    box-shadow:
        0 15px 35px rgba(255, 79, 162, .25);
}

/*=================================
       TÍTULOS
=================================*/
.modulo h3 {
    margin-bottom: 18px;
    font-size: 26px;
    color: var(--preto);
}

.modulo p {
    margin-bottom: 25px;
    line-height: 1.8;
}

/*=================================
         LISTA
=================================*/
.modulo ul {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.modulo li {
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/*=================================
        DURAÇÃO
=================================*/
.duracao {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    background:
        rgba(212, 175, 55, .15);
    color: #8b6b00;
}

/*=================================
      MÓDULO DESTAQUE
=================================*/
.modulo.destaque {
    background:
        linear-gradient(145deg,
            rgba(255, 79, 162, .15),
            rgba(212, 175, 55, .12));
    border:
        2px solid rgba(212, 175, 55, .4);
    transform: scale(1.02);
}

.modulo.destaque::before {
    content: "MAIS COMPLETO";
    position: absolute;
    top: 25px;
    right: -45px;
    transform: rotate(45deg);
    background:
        linear-gradient(90deg,
            var(--rosa),
            var(--dourado));
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 50px;
    letter-spacing: 1px;
}

/*=================================
      BORDA BRILHANTE
=================================*/
.modulo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background:
        linear-gradient(135deg,
            rgba(255, 79, 162, .35),
            rgba(212, 175, 55, .35),
            transparent);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/*=================================
       HOVER ÍCONE
=================================*/
.modulo:hover .icone {
    transform:
        rotate(12deg) scale(1.08);
    transition: .35s;
}

/*=================================
      HOVER TÍTULO
=================================*/
.modulo:hover h3 {
    color: var(--rosa);
    transition: .35s;
}

/*=================================
      ANIMAÇÃO
=================================*/
.modulo {
    animation:
        subir .9s ease;
}

/*=================================
        RESPONSIVO
=================================*/
@media(max-width:1100px) {
    .modulos-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .modulo {
        padding: 30px;
    }
    .section-title {
        margin-bottom: 45px;
    }
    .section-title p {
        font-size: 16px;
    }
    .numero {
        font-size: 65px;
    }
}

@media(max-width:480px) {
    .modulo {
        padding: 25px;
    }
    .icone {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .modulo h3 {
        font-size: 22px;
    }
    .numero {
        font-size: 52px;
        right: 15px;
    }
    .duracao {
        font-size: 13px;
    }
    .modulo.destaque::before {
        font-size: 9px;
        padding: 6px 45px;
    }
}

/*==================================================
                BONUS PREMIUM
==================================================*/
.bonus {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #ffffff,
            #fff6fb);
}

.bonus::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: -250px;
    left: -250px;
    background:
        radial-gradient(circle,
            rgba(255, 79, 162, .08),
            transparent 70%);
}

.bonus-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

/*=========================
      CARD
=========================*/
.bonus-card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 28px;
    background:
        rgba(255, 255, 255, .45);
    backdrop-filter: blur(18px);
    border:
        1px solid rgba(255, 255, 255, .65);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
    transition: .45s;
}

.bonus-card:hover {
    transform:
        translateY(-12px);
}

/*=========================
      ÍCONE
=========================*/
.bonus-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 34px;
    color: white;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    box-shadow:
        0 15px 30px rgba(255, 79, 162, .25);
}

.bonus-card:hover .bonus-icon {
    transform:
        rotate(10deg) scale(1.08);
    transition: .35s;
}

/*=========================
      TEXTO
=========================*/
.bonus-card h3 {
    margin-bottom: 15px;
    font-size: 25px;
}

.bonus-card p {
    margin-bottom: 25px;
}

/*=========================
      VALOR
=========================*/
.valor {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    background:
        rgba(212, 175, 55, .12);
}
.valor strong {
    color: var(--rosa);
}

/*=========================
      DESTAQUE
=========================*/
.bonus-card.destaque {
    background:
        linear-gradient(135deg,
            rgba(255, 79, 162, .15),
            rgba(212, 175, 55, .12));
    border:
        2px solid rgba(212, 175, 55, .35);
}

.bonus-card.destaque::before {
    content: "MAIS VALIOSO";
    position: absolute;
    top: 22px;
    right: -45px;
    transform: rotate(45deg);
    padding: 8px 45px;
    color: white;
    font-size: 11px;
    font-weight: 700;
    background:
        linear-gradient(90deg,
            var(--rosa),
            var(--dourado));
}

/*=========================
      TOTAL
=========================*/
.bonus-total {
    margin-top: 70px;
    text-align: center;
    padding: 55px;
    border-radius: 30px;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    color: white;
    box-shadow:
        0 25px 55px rgba(255, 79, 162, .28);
}

.bonus-total h3 {
    margin-bottom: 15px;
    font-size: 26px;
}

.bonus-total h2 {
    font-size: 70px;
    margin: 15px 0;
    color: white;
}

.bonus-total p {
    color: white;
    font-size: 20px;
}

.bonus-total strong {
    color: #fff7b2;
}

/*=========================
      RESPONSIVO
=========================*/
@media(max-width:1100px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .bonus-card {
        padding: 30px;
    }
    .bonus-total {
        padding: 40px 25px;
    }
    .bonus-total h2 {
        font-size: 50px;
    }
}

@media(max-width:480px) {
    .bonus-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    .bonus-card h3 {
        font-size: 22px;
    }
    .bonus-total h2 {
        font-size: 42px;
    }
    .bonus-total p {
        font-size: 16px;
    }
}

/*======================================================
                DEPOIMENTOS - PARTE 1
        Layout + Estatísticas + Estrutura Slider
======================================================*/

.depoimentos {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        linear-gradient(180deg,
            #fff7fc 0%,
            #ffffff 55%,
            #fffaf0 100%);
}

/*====================================
      ELEMENTOS DECORATIVOS
=====================================*/
.depoimentos::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    top: -280px;
    left: -280px;
    background:
        radial-gradient(circle,
            rgba(255, 79, 162, .10),
            transparent 70%);
    pointer-events: none;
}

.depoimentos::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    right: -180px;
    bottom: -180px;
    background:
        radial-gradient(circle,
            rgba(212, 175, 55, .08),
            transparent 70%);
    pointer-events: none;
}

/*====================================
          TÍTULO
=====================================*/
.depoimentos .section-title {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

/*====================================
      ÁREA DE ESTATÍSTICAS
=====================================*/
.avaliacao-geral {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
    padding: 40px;
    border-radius: 30px;
    background:
        rgba(255, 255, 255, .45);
    backdrop-filter: blur(18px);
    border:
        1px solid rgba(255, 255, 255, .65);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 2;
}

/*====================================
          NOTA
=====================================*/
.nota {
    text-align: center;
    min-width: 220px;
}

.nota h2 {
    font-size: 72px;
    margin-bottom: 10px;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    background-clip: text;
    text-emphasis-color: transparent;
}

.estrelas {
    font-size: 24px;
    margin-bottom: 15px;
}

.nota span {
    color: #666;
    font-size: 15px;
}

/*====================================
       ESTATÍSTICAS
=====================================*/
.estatisticas {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.estatistica {
    text-align: center;
    padding: 25px;
    border-radius: 22px;
    background: white;
    box-shadow:
        0 12px 25px rgba(0, 0, 0, .06);
    transition: .35s;
}

.estatistica:hover {
    transform: translateY(-8px);
}

.estatistica h3 {
    font-size: 34px;
    margin-bottom: 10px;
    color: var(--rosa);
}

.estatistica span {
    color: #666;
    font-size: 15px;
}

/*====================================
      SLIDER
=====================================*/
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: auto;
    z-index: 2;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition:
        transform .6s ease;
    will-change: transform;
    padding: 15px 5px;
}

/*====================================
      BOTÕES (estrutura)
=====================================*/
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.slider-btn.prev {
    left: -12px;
}

.slider-btn.next {
    right: -12px;
}

/*====================================
      INDICADORES
=====================================*/
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d8d8d8;
    cursor: pointer;
    transition: .35s;
}

.dot.active {
    width: 36px;
    border-radius: 30px;
    background:
        linear-gradient(90deg,
            var(--rosa),
            var(--dourado));
}

/*====================================
        RESPONSIVO
=====================================*/
@media(max-width:1100px) {
    .avaliacao-geral {
        flex-direction: column;
        text-align: center;
    }
    .estatisticas {
        width: 100%;
    }
}

@media(max-width:768px) {
    .depoimentos {
        padding: 80px 0;
    }
    .avaliacao-geral {
        padding: 30px;
    }
    .estatisticas {
        grid-template-columns: 1fr;
    }
    .nota h2 {
        font-size: 58px;
    }
    .slider-btn {
        display: none;
    }
}

@media(max-width:480px) {
    .avaliacao-geral {
        padding: 22px;
    }
    .nota h2 {
        font-size: 46px;
    }
    .estrelas {
        font-size: 20px;
    }
}

/*======================================================
        DEPOIMENTOS - PARTE 2A
        Cards Premium + Glassmorphism
======================================================*/
/*====================================
        CARD PRINCIPAL
=====================================*/
.testimonial-card {
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    padding: 40px 35px;
    border-radius: 32px;
    overflow: hidden;
    text-align: center;
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .08);
    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

/*====================================
      BRILHO DECORATIVO
=====================================*/
.testimonial-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: -90px;
    right: -90px;
    background:
        radial-gradient(circle,
            rgba(255, 79, 162, .18),
            transparent 70%);
    pointer-events: none;
}

.testimonial-card::after {
    content: "❝";
    position: absolute;
    top: 18px;
    left: 22px;
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 79, 162, .08);
    line-height: 1;
    pointer-events: none;
}

/*====================================
        FOTO
=====================================*/
.testimonial-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 22px;
    border: 5px solid rgba(255, 255, 255, .95);
    box-shadow:
        0 15px 35px rgba(255, 79, 162, .18);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/*====================================
      MOLDURA DOURADA
=====================================*/
.testimonial-card img {
    outline: 3px solid rgba(212, 175, 55, .35);
    outline-offset: 5px;
}

/*====================================
        ESTRELAS
=====================================*/
.testimonial-card .stars {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: #F5B301;
}

/*====================================
         NOME
=====================================*/
.testimonial-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--preto);
}

/*====================================
       CIDADE
=====================================*/
.testimonial-card small {
    display: block;
    margin-bottom: 22px;
    font-size: 14px;
    color: #888;
}

/*====================================
       TEXTO
=====================================*/
.testimonial-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/*====================================
      CARD ATIVO
=====================================*/
.testimonial-card.active {
    border-color:
        rgba(255, 79, 162, .35);
    box-shadow:
        0 28px 60px rgba(255, 79, 162, .12);
}

/*====================================
     TRANSIÇÕES
=====================================*/
.testimonial-card,
.testimonial-card img,
.testimonial-card h3 {
    transition: .35s;
}

/*====================================
      RESPONSIVO
=====================================*/
@media(max-width:1100px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media(max-width:768px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 32px 25px;
    }
    .testimonial-card img {
        width: 95px;
        height: 95px;
    }
    .testimonial-card h3 {
        font-size: 22px;
    }
}

@media(max-width:480px) {
    .testimonial-card {
        border-radius: 24px;
        padding: 28px 22px;
    }
    .testimonial-card img {
        width: 85px;
        height: 85px;
    }
    .testimonial-card p {
        font-size: 15px;
    }
    .testimonial-card::after {
        font-size: 56px;
    }
}

/*======================================================
    DEPOIMENTOS - PARTE 2B.2.2B.1
    Hover 3D • Glow • Shine • Interações
======================================================*/

/*=====================================
    CONFIGURAÇÃO BASE
======================================*/
.testimonial-card {
    transform-style: preserve-3d;
    perspective: 1200px;
    cursor: pointer;
    isolation: isolate;
}

/*=====================================
    BORDA LUMINOSA
======================================*/
.testimonial-card .card-glow {
    display: none;
}

.testimonial-card::before {
    background:
        radial-gradient(circle at top right,
            rgba(255, 79, 162, .25),
            transparent 65%);
}

/* Moldura iluminada */
.testimonial-card::selection {
    background: transparent;
}

.testimonial-card {
    border:
        1px solid rgba(255, 255, 255, .5);
}

/*=====================================
    BRILHO EXTERNO
======================================*/
.testimonial-card:hover {
    transform:
        perspective(1200px) rotateX(5deg) rotateY(-5deg) translateY(-14px) scale(1.02);
    border-color:
        rgba(255, 79, 162, .45);
    box-shadow:
        0 18px 40px rgba(255, 79, 162, .18),
        0 35px 80px rgba(0, 0, 0, .12),
        0 0 0 1px rgba(255, 255, 255, .35);
}

/*=====================================
    SHINE
======================================*/
.testimonial-card .shine {
    display: none;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    inset: -150%;
    background:
        linear-gradient(120deg,
            transparent 35%,
            rgba(255, 255, 255, .45) 50%,
            transparent 65%);
    transform:
        translateX(-120%) rotate(25deg);
    transition:
        transform .9s ease;
    pointer-events: none;
    z-index: 3;
}

.testimonial-card:hover::after {
    transform:
        translateX(140%) rotate(25deg);
}

/*=====================================
     FOTO
======================================*/
.testimonial-card:hover img {
    transform:
        scale(1.08) rotate(-2deg);
    box-shadow:
        0 18px 40px rgba(255, 79, 162, .22);
}

/*=====================================
      ESTRELAS
======================================*/
.testimonial-card .stars {
    transition:
        transform .35s ease,
        letter-spacing .35s ease,
        filter .35s ease;
}

.testimonial-card:hover .stars {
    transform: scale(1.08);
    letter-spacing: 4px;
    filter:
        drop-shadow(0 0 8px rgba(255, 193, 7, .45));
}

/*=====================================
      NOME
======================================*/
.testimonial-card h3 {
    transition:
        color .35s ease,
        transform .35s ease;
}

.testimonial-card:hover h3 {
    color: var(--rosa);
    transform: translateY(-2px);
}

/*=====================================
      TEXTO
======================================*/
.testimonial-card p {
    transition:
        color .35s ease;
}

.testimonial-card:hover p {
    color: #444;
}

/*=====================================
      BADGE
======================================*/
.testimonial-card.active {
    overflow: hidden;
}

.testimonial-card.active::before {
    background:
        radial-gradient(circle at top right,
            rgba(255, 79, 162, .30),
            transparent 70%);
}

/*=====================================
      MOVIMENTO SUAVE
======================================*/
.testimonial-card,
.testimonial-card img,
.testimonial-card p,
.testimonial-card h3,
.testimonial-card .stars {
    will-change:
        transform;
}

/*=====================================
     CLIQUE
======================================*/
.testimonial-card:active {
    transform:
        scale(.985);
}

/*=====================================
    MOUSE REDUZIDO
======================================*/
@media (prefers-reduced-motion: reduce) {
    .testimonial-card,
    .testimonial-card:hover,
    .testimonial-card::after {
        transition: none;
        animation: none;
        transform: none;
    }
}

/*=====================================
      RESPONSIVO
======================================*/
@media(max-width:768px) {
    .testimonial-card:hover {
        transform:
            translateY(-8px);
    }
}

@media(hover:none) {
    .testimonial-card:hover {
        transform: none;
        box-shadow:
            0 20px 45px rgba(0, 0, 0, .08);
    }
    .testimonial-card:hover::after {
        transform:
            translateX(-120%) rotate(25deg);
    }
}

/*======================================================
    DEPOIMENTOS - PARTE 2B.2.2B.2
    Entrada • Decoração • Ajustes Finais
======================================================*/

/*=====================================
      ANIMAÇÕES DE ENTRADA
======================================*/
@keyframes testimonialFadeUp {
    from {
        opacity: 0;
        transform:
            translateY(60px) scale(.95);
    }
    to {
        opacity: 1;
        transform:
            translateY(0) scale(1);
    }
}

@keyframes testimonialFadeLeft {
    from {
        opacity: 0;
        transform:
            translateX(-50px);
    }
    to {
        opacity: 1;
        transform:
            translateX(0);
    }
}

@keyframes testimonialFadeRight {
    from {
        opacity: 0;
        transform:
            translateX(50px);
    }
    to {
        opacity: 1;
        transform:
            translateX(0);
    }
}

/*=====================================
      APLICAÇÃO DAS ANIMAÇÕES
======================================*/
.testimonial-card {
    animation:
        testimonialFadeUp .8s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) {
    animation-delay: .15s;
}

.testimonial-card:nth-child(2) {
    animation-delay: .30s;
}

.testimonial-card:nth-child(3) {
    animation-delay: .45s;
}

.testimonial-card:nth-child(4) {
    animation-delay: .60s;
}

.testimonial-card:nth-child(5) {
    animation-delay: .75s;
}

/*=====================================
       DECORAÇÃO INTERNA
======================================*/
.testimonial-card .card-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            rgba(255, 79, 162, .12),
            rgba(212, 175, 55, .12));
    top: -30px;
    right: -30px;
    pointer-events: none;
}

/*=====================================
       PONTO DE LUZ
======================================*/
.testimonial-card::marker {
    display: none;
}

.testimonial-card:hover {
    z-index: 5;
}

/*=====================================
       LINHA DECORATIVA
======================================*/
.testimonial-card h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin:
        12px auto 0;
    border-radius: 10px;
    background:
        linear-gradient(90deg,
            var(--rosa),
            var(--dourado));
    transition: .4s;
}

.testimonial-card:hover h3::after {
    width: 80px;
}

/*=====================================
      INDICADOR DE CONFIANÇA
======================================*/
.testimonial-card small::before {
    content: "📍";
    margin-right: 5px;
}

/*=====================================
      EFEITO FLUTUANTE
======================================*/
@keyframes floatingCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.testimonial-card.active {
    animation:
        floatingCard 5s ease-in-out infinite;
}

/*=====================================
      DECORAÇÕES DA SEÇÃO
======================================*/
.depoimentos .container::before {
    content: "✦";
    position: absolute;
    left: 8%;
    top: 35%;
    font-size: 40px;
    color:
        rgba(212, 175, 55, .25);
    animation:
        floatingCard 4s infinite;
}

.depoimentos .container::after {
    content: "✧";
    position: absolute;
    right: 8%;
    bottom: 25%;
    font-size: 55px;
    color:
        rgba(255, 79, 162, .18);
    animation:
        floatingCard 6s infinite;
}

/*=====================================
      MOBILE REFINADO
======================================*/
@media(max-width:768px) {
    .testimonial-card {
        animation:
            testimonialFadeUp .6s ease forwards;
    }
    .testimonial-card:hover {
        transform:
            translateY(-5px);
    }
    .depoimentos .container::before,
    .depoimentos .container::after {
        display: none;
    }
}

@media(max-width:480px) {
    .testimonial-card h3::after {
        width: 35px;
    }
    .testimonial-card:hover h3::after {
        width: 55px;
    }
}

/*=====================================
     ACESSIBILIDADE
======================================*/
@media(prefers-reduced-motion:reduce) {
    .testimonial-card,
    .testimonial-card.active,
    .depoimentos .container::before,
    .depoimentos .container::after {
        animation: none !important;
        opacity: 1;
    }
}

/*======================================================
              GARANTIA PREMIUM
======================================================*/
.garantia {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #fff,
            #fff7fc);
}

/* Fundo decorativo */
.garantia::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(212, 175, 55, .12),
            transparent 70%);
    left: -250px;
    top: -200px;
}

/* Caixa principal */
.garantia-box {
    display: grid;
    grid-template-columns: 350px 1fr;
    align-items: center;
    gap: 70px;
    padding: 70px;
    border-radius: 40px;
    background:
        rgba(255, 255, 255, .45);
    backdrop-filter:
        blur(20px);
    border:
        1px solid rgba(255, 255, 255, .7);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .10);
    position: relative;
}

/*==================================
        SELO
==================================*/
.garantia-selo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circulo-garantia {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    box-shadow:
        0 25px 60px rgba(255, 79, 162, .35);
    position: relative;
    animation:
        pulse 3s infinite;
}

.circulo-garantia::before {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border:
        2px dashed rgba(255, 255, 255, .5);
}

.circulo-garantia span {
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
}

.circulo-garantia small {
    font-size: 25px;
    font-weight: 600;
}

/*==================================
        TEXTO
==================================*/
.garantia-texto h2 {
    text-align: left;
    margin-bottom: 25px;
}

.garantia-texto p {
    font-size: 17px;
    margin-bottom: 30px;
}

.garantia-texto ul {
    display: grid;
    gap: 18px;
}

.garantia-texto li {
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
}

/*==================================
       HOVER
==================================*/
.garantia-box:hover .circulo-garantia {
    transform:
        scale(1.05);
    transition: .4s;
}

/*==================================
       RESPONSIVO
==================================*/
@media(max-width:1000px) {
    .garantia-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 45px;
    }
    .garantia-texto h2 {
        text-align: center;
    }
}

@media(max-width:600px) {
    .garantia-box {
        padding: 30px;
        border-radius: 25px;
    }
    .circulo-garantia {
        width: 200px;
        height: 200px;
    }
    .circulo-garantia span {
        font-size: 70px;
    }
    .garantia-texto p {
        font-size: 15px;
    }
}

/*==================================================
          RESULTADOS DAS ALUNAS
==================================================*/
.resultados {
    background:
        linear-gradient(180deg,
            #fff7fc,
            #fff);
    position: relative;
    overflow: hidden;
}

.galeria {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 30px;
}



.resultado-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: white;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .10);
    transition: .5s;
}

.resultado-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .6s;
}

.resultado-card:hover {
    transform:
        translateY(-12px);
}

.resultado-card:hover img {
    transform:
        scale(1.12);
}

.resultado-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .75));
}

.resultado-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.resultado-info span {
    font-size: 14px;
}

@media(max-width:1100px) {
    .galeria {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .galeria {
        grid-template-columns: 1fr;
    }
    .resultado-card img {
        height: 350px;
    }
}

/*==================================================
                FAQ PREMIUM
==================================================*/
.faq {
    position: relative;
    background:
        linear-gradient(180deg,
            #fff,
            #fff7fc);
    overflow: hidden;
}

.faq::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 79, 162, .10),
            transparent 70%);
    right: -200px;
    top: -150px;
}

/* CONTAINER */
.faq-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* ITEM */
.faq-item {
    background:
        rgba(255, 255, 255, .55);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    border:
        1px solid rgba(255, 255, 255, .7);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .07);
    overflow: hidden;
    transition: .4s;
}

.faq-item:hover {
    transform:
        translateY(-5px);
}

/* PERGUNTA */
.faq-question {
    width: 100%;
    border: none;
    background: none;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: var(--preto);
    text-align: left;
}

.faq-question span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    color: white;
    font-size: 25px;
    transition: .4s;
}

/* RESPOSTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height .45s ease;
}

.faq-answer p {
    padding:
        0 30px 30px;
    font-size: 16px;
    line-height: 1.8;
}

/* ABERTO */
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-item.active .faq-question span {
    transform:
        rotate(45deg);
}

/*=================================
        RESPONSIVO
==================================*/
@media(max-width:768px) {
    .faq-question {
        padding: 22px;
        font-size: 16px;
    }
    .faq-answer p {
        padding:
            0 22px 25px;
        font-size: 15px;
    }
}

@media(max-width:480px) {
    .faq-question span {
        width: 30px;
        height: 30px;
    }
}

/*==================================================
              RODAPÉ PREMIUM
==================================================*/
.footer {
    position: relative;
    padding: 80px 0 30px;
    background:
        linear-gradient(135deg,
            #1d1018,
            #351522);
    color: white;
    overflow: hidden;
}

/* brilho */
.footer::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 79, 162, .25),
            transparent 70%);
    top: -200px;
    left: -200px;
}

.footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(212, 175, 55, .18),
            transparent 70%);
    bottom: -150px;
    right: -150px;
}

/* GRID */
.footer-content {
    display: grid;
    grid-template-columns:
        2fr 1fr 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* LOGO */
.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    display: block;
    font-size: 18px;
    color: #d4af37;
}

.footer-brand p {
    color: #ddd;
    line-height: 1.8;
    max-width: 330px;
}

/* LINKS */
.footer-links h3,
.footer-security h3 {
    margin-bottom: 25px;
    font-size: 20px;
    color: #fff;
}

.footer-links ul {
    display: grid;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    transition: .3s;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* SOCIAL */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    padding: 10px 15px;
    border-radius: 30px;
    background:
        rgba(255, 255, 255, .08);
    color: white;
    font-size: 13px;
    transition: .3s;
}

.social-links a:hover {
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
}

/* SEGURANÇA */
.security-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 15px;
    background:
        rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.security-card span {
    color: #ddd;
    font-size: 14px;
}

/* FINAL */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top:
        1px solid rgba(255, 255, 255, .15);
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* RESPONSIVO */
@media(max-width:1000px) {
    .footer-content {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .footer {
        padding: 60px 0 25px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-logo {
        font-size: 26px;
    }
    .social-links {
        flex-wrap: wrap;
    }
}

/* ANIMAÇÃO SCROLL */
.mostrar {
    animation:
        testimonialFadeUp .8s ease forwards;
}

/*==================================================
              OFERTA IRRESISTÍVEL
==================================================*/
.oferta {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #fff7fc,
            #fff);
}

.oferta::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(255, 79, 162, .12),
            transparent 70%);
    top: -300px;
    right: -250px;
}

/* BOX PRINCIPAL */
.oferta-box {
    max-width: 650px;
    margin: auto;
    padding: 55px;
    border-radius: 40px;
    background:
        rgba(255, 255, 255, .55);
    backdrop-filter: blur(20px);
    border:
        2px solid rgba(212, 175, 55, .25);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .12);
    text-align: center;
    position: relative;
}

/* BADGE */
.oferta-badge {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    background:
        linear-gradient(90deg,
            var(--rosa),
            var(--dourado));
    margin-bottom: 25px;
}

.oferta-header h3 {
    font-size: 35px;
    line-height: 1.3;
}

/* PREÇO */
.valor-box {
    margin: 35px 0;
}

.valor-antigo {
    font-size: 20px;
    color: #777;
}

.valor-antigo strong {
    text-decoration: line-through;
}

.valor-atual {
    font-size: 95px;
    font-weight: 900;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    background-clip: text;
    text-emphasis-color: transparent;
    margin: 10px 0;
}

.valor-box span {
    color: #777;
}

/* BENEFÍCIOS */
.beneficios {
    text-align: left;
    margin: 35px 0;
    padding: 30px;
    border-radius: 25px;
    background:
        rgba(255, 79, 162, .05);
}

.beneficios h3 {
    margin-bottom: 20px;
}

.beneficios ul {
    display: grid;
    gap: 15px;
}

.beneficios li {
    font-size: 16px;
}

/* CONTADOR */
.contador-box {
    margin: 30px 0;
    padding: 25px;
    border-radius: 25px;
    background:
        #fff3f8;
}

.contador {
    font-size: 45px;
    font-weight: 800;
    color: var(--rosa);
    letter-spacing: 3px;
}

/* BOTÃO */
.btn-primary{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:18px 42px;
    width:auto;
    min-width:280px;
    max-width:100%;
    border:none;
    border-radius:60px;
    background:linear-gradient(
        135deg,
        var(--rosa),
        var(--dourado)
    );
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    text-align:center;
    white-space:nowrap;
    cursor:pointer;
    box-shadow:
        0 18px 40px rgba(255,79,162,.35);
    transition:all .35s ease;
}
.btn-primary:hover{
    transform:
        translateY(-4px)
        scale(1.02);
    box-shadow:
        0 28px 55px rgba(255,79,162,.45);
}
.btn-primary:active{
    transform:scale(.98);
}
@media(max-width:768px){
    .btn-primary{
        width:100%;
        min-width:unset;
        padding:16px 24px;
        font-size:16px;
    }
}
@keyframes pulseButton {
    0% {
        box-shadow:
            0 0 0 0 rgba(255, 79, 162, .5);
    }
    70% {
        box-shadow:
            0 0 0 20px rgba(255, 79, 162, 0);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(255, 79, 162, 0);
    }
}

/* SEGURANÇA */
.seguranca {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

/* RESPONSIVO */
@media(max-width:600px) {
    .oferta-box {
        padding: 35px 25px;
        border-radius: 25px;
    }
    .oferta-header h3 {
        font-size: 26px;
    }
    .valor-atual {
        font-size: 70px;
    }
    .contador {
        font-size: 35px;
    }
    .btn-compra {
        font-size: 15px;
    }
}

/*==================================================
          BARRA FIXA DE COMPRA PREMIUM
==================================================*/
.purchase-bar {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform:
        translateX(-50%);
    width: min(1100px, 90%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    border-radius: 25px;
    background:
        rgba(255, 255, 255, .65);
    backdrop-filter:
        blur(20px);
    -webkit-backdrop-filter:
        blur(20px);
    border:
        1px solid rgba(255, 255, 255, .8);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .15);
    z-index: 9999;
    animation:
        slideUpBar .8s ease;
}

/*================================
        ANIMAÇÃO
================================*/
@keyframes slideUpBar {
    from {
        opacity: 0;
        transform:
            translate(-50%, 80px);
    }
    to {
        opacity: 1;
        transform:
            translate(-50%, 0);
    }
}

/*================================
        INFORMAÇÕES
================================*/
.purchase-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.purchase-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    font-size: 25px;
}
.purchase-info strong {
    display: block;
    font-size: 16px;
}
.purchase-info span {
    display: block;
    font-size: 13px;
    color: #777;
}

/*================================
        PREÇO
================================*/
.purchase-price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.purchase-price span {
    font-size: 14px;
    color: #777;
}
.purchase-price strong {
    font-size: 35px;
    font-weight: 900;
    background:
        linear-gradient(135deg,
            var(--rosa),
            var(--dourado));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*================================
        BOTÃO
================================*/
.purchase-button {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    color: white;
    background:
        linear-gradient(90deg,
            var(--rosa),
            var(--dourado));
    box-shadow:
        0 15px 35px rgba(255, 79, 162, .3);
    transition: .35s;
}
.purchase-button:hover {
    transform:
        translateY(-4px);
}

/*================================
        MOBILE
================================*/
@media(max-width:768px) {
    .purchase-bar {
        width: calc(100% - 25px);
        bottom: 12px;
        padding: 12px;
        border-radius: 20px;
        display: block;
    }
    .purchase-info {
        display: none;
    }
    .purchase-price {
        justify-content: center;
        margin-bottom: 10px;
    }
    .purchase-price strong {
        font-size: 28px;
    }
    .purchase-button {
        display: block;
        text-align: center;
        width: 100%;
        padding: 16px;
        font-size: 14px;
    }
}

/* PERFORMANCE */
img {
    max-width: 100%;
    height: auto;
}
html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
}

/*=================================
       PÁGINA OBRIGADO
==================================*/
.obrigado {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            #fff0f7,
            #fff);
    padding: 30px;
}
.obrigado-box {
    max-width: 600px;
    text-align: center;
    padding: 60px 40px;
    border-radius: 40px;
    background:
        rgba(255, 255, 255, .7);
    backdrop-filter: blur(20px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .12);
}
.check {
    width: 100px;
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 60px;
    color: white;
    background:
        linear-gradient(135deg,
            #ff4fa2,
            #d4af37);
}
.obrigado-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    background:
        linear-gradient(90deg,
            #ff4fa2,
            #d4af37);

}

/*==================================
        LOGO PREMIUM CENTRALIZADO
==================================*/
.logo-premium{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:8px;
    width:100%;
}

.logo-principal{
    font-size:34px;
    font-weight:800;
    line-height:1.2;
    background:
    linear-gradient(
        135deg,
        var(--rosa),
        var(--dourado)
    );
    background-clip:text;
    -webkit-text-fill-color:transparent;
    letter-spacing:.5px;
}

.logo-subtitulo{
    font-size:16px;
    font-weight:600;
    color:#777;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Ajuste para telas menores */
@media(max-width:768px){
.logo-principal{
    font-size:26px;
}
.logo-subtitulo{
    font-size:12px;
    letter-spacing:1px;
}
}

/* =====================================================
   FASE 2 — IDENTIDADE VISUAL E ESTRUTURA GERAL
===================================================== */
:root {
    --rosa: #b85f72;
    --rosa-claro: #f5e1e5;
    --rosa-escuro: #7f3949;
    --dourado: #b9965b;
    --dourado-claro: #eadcc4;
    --preto: #281f20;
    --cinza: #665d5e;
    --cinza-claro: #f7f2f1;
    --branco: #fffdfb;
    --shadow: 0 18px 45px rgba(74, 49, 52, .09);
    --radius: 24px;
}

body {
    background: #fffdfb;
    color: var(--preto);
}

section {
    padding: 88px 0;
}

header {
    background: rgba(255, 253, 251, .92);
    border-bottom: 1px solid rgba(127, 57, 73, .10);
    box-shadow: 0 8px 28px rgba(74, 49, 52, .04);
}

header .container {
    height: 78px;
}

.logo-principal {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: .2px;
    background: none;
    color: var(--rosa-escuro);
    -webkit-text-fill-color: currentColor;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-principal strong {
    font: inherit;
}

.logo-principal small {
    margin-top: 7px;
    color: #7c6b6d;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

nav {
    gap: 28px;
}

nav a {
    font-size: 14px;
    font-weight: 600;
    color: #55494b;
}

.btn-menu,
.btn-primary,
.purchase-button {
    background: var(--rosa-escuro);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(127, 57, 73, .20);
}

.btn-menu:hover,
.btn-primary:hover,
.purchase-button:hover {
    background: #6f2f3e;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(127, 57, 73, .24);
}

.hero {
    padding-top: 150px;
    background: linear-gradient(135deg, #fffaf8 0%, #f8ecec 58%, #f5eee5 100%);
}

.hero-grid {
    gap: 80px;
}

.hero-text {
    max-width: 650px;
}

.tag,
.section-tag {
    background: #f3dfe3;
    color: var(--rosa-escuro);
    border: 1px solid rgba(127, 57, 73, .09);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

h1,
h2,
h3 {
    letter-spacing: -.025em;
}

h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.08;
}

h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.15;
}

.hero span {
    color: var(--rosa-escuro);
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(46px, 5vw, 68px);
}

.hero h1 span {
    display: block;
    margin-top: 8px;
    color: var(--rosa-escuro);
    font-size: .76em;
}

.hero p {
    max-width: 640px;
    margin: 26px 0 28px;
    font-size: 17px;
    line-height: 1.75;
}

.hero .hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin-bottom: 30px;
}

.hero .hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #504547;
    font-size: 14px;
    line-height: 1.5;
}

.hero .hero-benefits li span {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: #ead5da;
    color: var(--rosa-escuro);
    font-size: 12px;
    font-weight: 800;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 22px;
    width: fit-content;
    margin-bottom: 24px;
    padding: 17px 22px;
    border: 1px solid rgba(127, 57, 73, .12);
    border-radius: 20px;
    background: rgba(255, 253, 251, .78);
    box-shadow: 0 12px 30px rgba(74, 49, 52, .07);
}

.hero-price div {
    padding-right: 22px;
    border-right: 1px solid rgba(127, 57, 73, .14);
}

.hero-price small {
    display: block;
    margin-bottom: 3px;
    color: #796d6e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-price strong {
    display: block;
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    line-height: 1;
}

.hero-price > span {
    color: #675b5d;
    font-size: 13px;
    line-height: 1.45;
}

.hero-price b {
    color: var(--preto);
    font-size: 15px;
}

.hero .hero-buttons {
    margin: 0;
}

.hero .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 17px 30px;
    font-size: 14px;
    letter-spacing: .04em;
}

.hero .hero-security {
    margin: 12px 0 0;
    color: #756a6b;
    font-size: 12px;
    font-weight: 600;
}

.hero-image {
    animation: none;
    max-width: 500px;
    margin-left: auto;
}

.hero-image img {
    border-radius: 160px 160px 34px 34px;
    box-shadow: 0 28px 65px rgba(74, 49, 52, .16);
}

.hero-image::after {
    inset: -12px;
    border-radius: 170px 170px 42px 42px;
    background: transparent;
    border: 1px solid rgba(185, 150, 91, .42);
}

.hero-teacher {
    position: absolute;
    left: -24px;
    bottom: 28px;
    min-width: 240px;
    padding: 16px 20px;
    border: 1px solid rgba(127, 57, 73, .11);
    border-radius: 18px;
    background: rgba(255, 253, 251, .94);
    box-shadow: 0 18px 40px rgba(74, 49, 52, .14);
}

.hero-teacher strong,
.hero-teacher span {
    display: block;
}

.hero-teacher strong {
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
}

.hero-teacher span {
    margin-top: 4px;
    color: #776b6d;
    font-size: 12px;
}

.beneficios,
.modulos,
.faq {
    background: #fffdfb;
}

.sobre,
.bonus,
.garantia {
    background: #f8f2f0;
}

.card,
.modulo,
.bonus-card,
.faq-item,
.garantia-box,
.oferta-box {
    background: #fffdfb;
    border: 1px solid rgba(127, 57, 73, .09);
    box-shadow: var(--shadow);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.card:hover,
.modulo:hover,
.bonus-card:hover,
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(74, 49, 52, .12);
}

.icone,
.bonus-icon {
    background: #f3e4e4;
    box-shadow: none;
}

.modulo.destaque,
.bonus-card.destaque {
    border: 1px solid rgba(185, 150, 91, .55);
    transform: none;
}

.bonus-total {
    background: var(--rosa-escuro);
    border: none;
    box-shadow: 0 22px 55px rgba(127, 57, 73, .18);
}

.bonus-total h2,
.bonus-total h3,
.bonus-total p,
.bonus-total strong {
    color: #fff;
    -webkit-text-fill-color: currentColor;
}

.garantia-box {
    border-radius: 32px;
}

.circulo-garantia {
    background: var(--rosa-escuro);
    box-shadow: 0 18px 42px rgba(127, 57, 73, .20);
}

.oferta {
    background: linear-gradient(145deg, #f7ecec, #fffaf7);
}

.oferta-box {
    border-top: 4px solid var(--dourado);
}

.oferta-badge {
    background: #f3e4e4;
    color: var(--rosa-escuro);
}

.footer {
    background: #2d2425;
}

.purchase-bar {
    background: rgba(255, 253, 251, .94);
    border: 1px solid rgba(127, 57, 73, .12);
    box-shadow: 0 18px 50px rgba(74, 49, 52, .16);
}

.purchase-logo {
    background: #f3e4e4;
}

.purchase-price strong {
    background: none;
    color: var(--rosa-escuro);
    -webkit-text-fill-color: currentColor;
}

@media(max-width:768px) {
    section {
        padding: 66px 0;
    }

    header .container {
        justify-content: center;
        height: 68px;
    }

    .logo-principal {
        font-size: 25px;
    }

    .hero {
        padding-top: 112px;
    }

    .hero-grid {
        gap: 46px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero .hero-benefits {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-price {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero .btn-primary {
        width: 100%;
        max-width: 440px;
    }

    .hero .hero-security {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        border-radius: 110px 110px 28px 28px;
    }

    .hero-image {
        max-width: 440px;
        margin: 0 auto;
    }

    .hero-teacher {
        left: 50%;
        bottom: 18px;
        min-width: 225px;
        transform: translateX(-50%);
        text-align: center;
    }

    .purchase-bar {
        box-shadow: 0 12px 35px rgba(74, 49, 52, .18);
    }
}

/* =====================================================
   FASE 14 — RESPONSIVIDADE E ACABAMENTO FINAL
===================================================== */
html {
    scroll-padding-top: 96px;
}

body {
    padding-bottom: 0;
}

body.legal-page,
body:has(.obrigado) {
    padding-bottom: 0;
}

body.thank-you-page {
    padding-bottom: 0;
}

main,
section,
footer {
    max-width: 100%;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(185, 150, 91, .55);
    outline-offset: 3px;
}

.btn-primary,
.btn-menu,
.purchase-button,
.faq-suporte a,
.legal-back {
    min-height: 44px;
}

.hero-image img,
.sobre-imagem img {
    object-position: center top;
}

.purchase-bar {
    transition: opacity .25s ease, transform .25s ease;
}

@media(min-width:1101px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
    }
}

@media(min-width:769px) and (max-width:1100px) {
    header .container {
        justify-content: center;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-text {
        max-width: 760px;
        margin: auto;
    }

    .hero-image {
        width: min(520px, 80%);
        margin: auto;
    }

    .sobre-imagem {
        width: min(470px, 75%);
    }
}

@media(max-width:768px) {
    html {
        scroll-padding-top: 78px;
    }

    body {
        padding-bottom: 0;
    }

    .container {
        width: min(100% - 32px, 1180px);
    }

    section {
        padding: 62px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        margin-bottom: 15px;
        font-size: clamp(29px, 8vw, 36px);
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero {
        padding-top: 104px;
        padding-bottom: 68px;
    }

    .hero-text {
        text-align: center;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-image {
        width: calc(100% - 18px);
    }

    .hero-teacher,
    .sobre-assinatura {
        width: min(250px, calc(100% - 30px));
        min-width: 0;
    }

    .transformacao-intro h2,
    .sobre-conteudo h2,
    .garantia-texto h2 {
        font-size: clamp(30px, 8.5vw, 39px);
    }

    .modulos-resumo strong {
        font-size: 18px;
    }

    .modulo h3,
    .bonus-card h3 {
        font-size: 22px;
    }

    .purchase-bar {
        left: 10px;
        right: 10px;
        bottom: 8px;
        width: auto;
        transform: none;
        padding: 9px;
        border-radius: 16px;
    }

    .purchase-price {
        display: none;
    }

    .purchase-button {
        min-height: 48px;
        padding: 13px 16px;
        font-size: 12px;
        letter-spacing: .02em;
    }

    .footer {
        padding-bottom: 35px;
    }
}

@media(max-width:420px) {
    .container {
        width: calc(100% - 24px);
    }

    .logo-principal {
        font-size: 23px;
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero h1 span {
        font-size: .7em;
    }

    .hero-price {
        align-items: center;
        gap: 11px;
    }

    .hero-price strong {
        font-size: 25px;
    }

    .hero-price > span,
    .hero-price b {
        font-size: 12px;
    }

    .para-quem .card,
    .transformacao-item,
    .bonus-card,
    .jornada-item {
        border-radius: 19px;
    }

    .modulo {
        padding: 20px 15px;
    }

    .modulo li {
        font-size: 9px;
    }

    .garantia-passos > div {
        align-items: start;
    }

    .faq-question {
        gap: 12px;
        padding: 18px 16px;
    }

    .faq-question span {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .oferta-conteudo,
    .oferta-compra {
        padding: 30px 18px;
    }

    .valor-atual {
        font-size: 51px;
    }
}

@media(prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* =====================================================
   FASE 15 — PÁGINA DE AGRADECIMENTO
===================================================== */
.thank-you-page {
    min-height: 100vh;
    background: #fffdfb;
}

.thank-you-header {
    position: static;
    background: #fffdfb;
}

.thank-you-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thank-you-header .container > span {
    padding: 8px 13px;
    border-radius: 999px;
    background: #e9f3eb;
    color: #446b4d;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.thank-you-hero {
    padding: 82px 0;
    background: linear-gradient(145deg, #fffaf7, #f6e9eb);
}

.thank-you-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 65px;
    align-items: center;
}

.thank-you-check {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #4f7657;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 14px 34px rgba(79, 118, 87, .20);
}

.thank-you-message h1 {
    max-width: 700px;
    margin: 22px 0 24px;
    font-size: clamp(42px, 5.2vw, 64px);
}

.thank-you-message > p {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.8;
}

.thank-you-alert {
    max-width: 660px;
    margin-top: 28px;
    padding: 18px 21px;
    border-left: 3px solid var(--dourado);
    border-radius: 0 15px 15px 0;
    background: rgba(255, 253, 251, .74);
}

.thank-you-alert strong {
    display: block;
    margin-bottom: 5px;
    color: var(--preto);
    font-size: 12px;
}

.thank-you-alert p {
    font-size: 11px;
    line-height: 1.6;
}

.thank-you-summary {
    padding: 36px 32px;
    border: 1px solid rgba(127, 57, 73, .10);
    border-top: 4px solid var(--dourado);
    border-radius: 26px;
    background: #fffdfb;
    box-shadow: 0 25px 55px rgba(74, 49, 52, .11);
}

.thank-you-summary-label {
    color: var(--rosa-escuro);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.thank-you-summary h2 {
    margin: 12px 0 3px;
    text-align: left;
    font-size: 33px;
}

.thank-you-summary > p {
    font-size: 12px;
}

.thank-you-summary ul {
    display: grid;
    gap: 12px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(127, 57, 73, .10);
}

.thank-you-summary li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #615557;
    font-size: 11px;
}

.thank-you-summary li span {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9f3eb;
    color: #446b4d;
    font-size: 9px;
    font-weight: 800;
}

.thank-you-steps {
    background: #fffdfb;
}

.thank-you-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.thank-you-step-grid article {
    padding: 28px 23px;
    border: 1px solid rgba(127, 57, 73, .09);
    border-radius: 20px;
    background: #fffdfb;
    box-shadow: 0 12px 30px rgba(74, 49, 52, .06);
}

.thank-you-step-grid article > span {
    display: block;
    margin-bottom: 20px;
    color: var(--dourado);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
}

.thank-you-step-grid h3 {
    min-height: 50px;
    margin-bottom: 10px;
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 1.25;
}

.thank-you-step-grid p {
    font-size: 11px;
    line-height: 1.65;
}

.thank-you-support {
    padding: 0 0 90px;
    background: #fffdfb;
}

.thank-you-support-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 38px 42px;
    border: 1px solid rgba(185, 150, 91, .28);
    border-radius: 25px;
    background: #faf4ed;
}

.thank-you-support-box h2 {
    margin: 16px 0 10px;
    text-align: left;
    font-size: 32px;
}

.thank-you-support-box p {
    max-width: 650px;
    font-size: 12px;
}

.thank-you-support-box .btn-primary {
    flex: 0 0 auto;
    min-width: 230px;
    padding: 16px 22px;
    font-size: 11px;
}

.thank-you-footer {
    padding: 24px 0;
    background: #2d2425;
}

.thank-you-footer .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.thank-you-footer p,
.thank-you-footer a {
    color: #bdb1b3;
    font-size: 9px;
}

.thank-you-footer div {
    display: flex;
    gap: 18px;
}

@media(max-width:900px) {
    .thank-you-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .thank-you-message {
        text-align: center;
    }

    .thank-you-check {
        margin-left: auto;
        margin-right: auto;
    }

    .thank-you-message > p,
    .thank-you-alert {
        margin-left: auto;
        margin-right: auto;
    }

    .thank-you-alert {
        text-align: left;
    }

    .thank-you-summary {
        max-width: 620px;
        width: 100%;
        margin: auto;
    }

    .thank-you-step-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:650px) {
    .thank-you-header .container {
        height: 72px;
    }

    .thank-you-header .container > span {
        font-size: 8px;
    }

    .thank-you-hero {
        padding: 60px 0;
    }

    .thank-you-message h1 {
        font-size: 37px;
    }

    .thank-you-step-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-step-grid h3 {
        min-height: auto;
    }

    .thank-you-support-box {
        flex-direction: column;
        padding: 30px 22px;
        text-align: center;
    }

    .thank-you-support-box h2 {
        text-align: center;
        font-size: 29px;
    }

    .thank-you-support-box .btn-primary {
        width: 100%;
        min-width: 0;
    }

    .thank-you-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* =====================================================
   FASE 5 — BENEFÍCIOS E TRANSFORMAÇÃO
===================================================== */
.transformacao {
    position: relative;
    overflow: hidden;
    background: #f8f2f0;
}

.transformacao::after {
    content: "";
    position: absolute;
    left: -190px;
    bottom: -210px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 150, 91, .11), transparent 68%);
    pointer-events: none;
}

.transformacao-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 76px;
    align-items: start;
}

.transformacao-intro {
    position: sticky;
    top: 120px;
}

.transformacao-intro h2 {
    margin: 22px 0 24px;
    text-align: left;
    font-size: clamp(34px, 4vw, 48px);
}

.transformacao-intro > p {
    font-size: 16px;
    line-height: 1.8;
}

.transformacao-destaque {
    margin-top: 30px;
    padding: 22px 24px;
    border-left: 3px solid var(--dourado);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 253, 251, .7);
}

.transformacao-destaque span,
.transformacao-destaque strong {
    display: block;
}

.transformacao-destaque span {
    margin-bottom: 7px;
    color: var(--rosa-escuro);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.transformacao-destaque strong {
    color: #4f4345;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.5;
}

.transformacao-lista {
    display: grid;
    gap: 14px;
}

.transformacao-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 25px 28px;
    border: 1px solid rgba(127, 57, 73, .09);
    border-radius: 22px;
    background: #fffdfb;
    box-shadow: 0 12px 32px rgba(74, 49, 52, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.transformacao-item:hover {
    transform: translateX(6px);
    border-color: rgba(185, 150, 91, .34);
    box-shadow: 0 18px 40px rgba(74, 49, 52, .09);
}

.transformacao-numero {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3e1e5;
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
}

.transformacao-item h3 {
    margin: 1px 0 7px;
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
}

.transformacao-item p {
    font-size: 14px;
    line-height: 1.65;
}

.transformacao-fecho {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 48px;
    padding: 24px 30px;
    border: 1px solid rgba(185, 150, 91, .28);
    border-radius: 20px;
    background: #fffaf4;
}

.transformacao-fecho p {
    margin: 0;
    font-size: 14px;
}

.transformacao-fecho a {
    flex: 0 0 auto;
    color: var(--rosa-escuro);
    font-size: 13px;
    font-weight: 700;
}

.transformacao-fecho a span {
    display: inline-block;
    margin-left: 6px;
    transition: transform .25s ease;
}

.transformacao-fecho a:hover span {
    transform: translateX(4px);
}

@media(max-width:900px) {
    .transformacao-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transformacao-intro {
        position: static;
        max-width: 720px;
        text-align: center;
        margin: auto;
    }

    .transformacao-intro h2 {
        text-align: center;
    }

    .transformacao-destaque {
        text-align: left;
    }
}

@media(max-width:600px) {
    .transformacao-item {
        grid-template-columns: 44px 1fr;
        gap: 14px;
        padding: 21px 18px;
    }

    .transformacao-numero {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .transformacao-item h3 {
        font-size: 20px;
    }

    .transformacao-fecho {
        flex-direction: column;
        text-align: center;
        padding: 22px 20px;
    }
}

/* =====================================================
   FASE 6 — APRESENTAÇÃO COMPLETA DA JULIANA
===================================================== */
.sobre {
    padding: 105px 0;
}

.sobre-grid {
    grid-template-columns: .82fr 1.18fr;
    gap: 88px;
    align-items: center;
}

.sobre-imagem {
    position: relative;
    max-width: 470px;
    margin: auto;
}

.sobre-imagem img {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 190px 190px 34px 34px;
    box-shadow: 0 30px 65px rgba(74, 49, 52, .16);
}

.sobre-moldura {
    position: absolute;
    z-index: 1;
    inset: -14px 16px 16px -14px;
    border: 1px solid rgba(185, 150, 91, .52);
    border-radius: 200px 200px 40px 40px;
}

.sobre-assinatura {
    position: absolute;
    z-index: 3;
    right: -30px;
    bottom: 28px;
    min-width: 235px;
    padding: 17px 20px;
    border: 1px solid rgba(127, 57, 73, .10);
    border-radius: 18px;
    background: rgba(255, 253, 251, .95);
    box-shadow: 0 18px 40px rgba(74, 49, 52, .14);
}

.sobre-assinatura strong,
.sobre-assinatura span {
    display: block;
}

.sobre-assinatura strong {
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 19px;
}

.sobre-assinatura span {
    margin-top: 4px;
    color: #7a6d6f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sobre-conteudo {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.sobre-conteudo:hover {
    transform: none;
}

.sobre-conteudo h2 {
    margin: 22px 0 26px;
    text-align: left;
    font-size: clamp(35px, 4vw, 49px);
}

.sobre-conteudo h2::after {
    display: none;
}

.sobre-conteudo > p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.82;
}

.sobre-conteudo blockquote {
    position: relative;
    margin: 26px 0 30px;
    padding: 20px 24px 20px 30px;
    border-left: 3px solid var(--dourado);
    border-radius: 0 16px 16px 0;
    background: #fffaf5;
    color: #5d4d50;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
}

.sobre-pilares {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sobre-pilares > div {
    padding: 19px 16px;
    border: 1px solid rgba(127, 57, 73, .09);
    border-radius: 17px;
    background: #fffdfb;
}

.sobre-pilares span {
    display: block;
    margin-bottom: 10px;
    color: var(--dourado);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
}

.sobre-pilares strong {
    display: block;
    margin-bottom: 7px;
    color: var(--preto);
    font-size: 13px;
}

.sobre-pilares p {
    font-size: 11px;
    line-height: 1.55;
}

.sobre-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 26px;
    color: var(--rosa-escuro);
    font-size: 13px;
    font-weight: 700;
}

.sobre-link span {
    transition: transform .25s ease;
}

.sobre-link:hover span {
    transform: translateX(4px);
}

@media(max-width:1000px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .sobre-conteudo {
        max-width: 760px;
        margin: auto;
        text-align: center;
    }

    .sobre-conteudo h2 {
        text-align: center;
    }

    .sobre-conteudo blockquote,
    .sobre-pilares {
        text-align: left;
    }
}

@media(max-width:680px) {
    .sobre {
        padding: 76px 0;
    }

    .sobre-imagem {
        width: calc(100% - 24px);
    }

    .sobre-assinatura {
        right: 50%;
        bottom: 18px;
        transform: translateX(50%);
        text-align: center;
    }

    .sobre-pilares {
        grid-template-columns: 1fr;
    }

    .sobre-pilares > div {
        display: grid;
        grid-template-columns: 35px 1fr;
        column-gap: 8px;
    }

    .sobre-pilares span {
        grid-row: 1 / 3;
    }
}

/* =====================================================
   FASE 10 — GARANTIA E SEGURANÇA
===================================================== */
.garantia {
    padding: 100px 0;
    background: #f8f2f0;
}

.garantia-box {
    grid-template-columns: 300px 1fr;
    gap: 62px;
    padding: 62px;
    border-radius: 34px;
    background: #fffdfb;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.garantia-selo {
    flex-direction: column;
}

.circulo-garantia {
    width: 230px;
    height: 230px;
    animation: none;
    background: var(--rosa-escuro);
    box-shadow: 0 24px 52px rgba(127, 57, 73, .18);
}

.circulo-garantia::before {
    inset: 13px;
    border: 1px solid rgba(255, 255, 255, .44);
}

.circulo-garantia span {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 78px;
    font-weight: 600;
}

.circulo-garantia small {
    max-width: 120px;
    margin-top: 5px;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.garantia-selo > p {
    margin-top: 17px;
    color: #8a7c7e;
    font-size: 10px;
    text-align: center;
}

.garantia-box:hover .circulo-garantia {
    transform: none;
}

.garantia-texto h2 {
    margin: 20px 0 20px;
    font-size: clamp(35px, 4vw, 48px);
}

.garantia-texto > p {
    margin-bottom: 27px;
    font-size: 15px;
    line-height: 1.8;
}

.garantia-passos {
    display: grid;
    gap: 10px;
}

.garantia-passos > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 16px;
    border: 1px solid rgba(127, 57, 73, .08);
    border-radius: 14px;
    background: #faf6f4;
}

.garantia-passos span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1dfe3;
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 11px;
    font-weight: 700;
}

.garantia-passos p {
    color: #665a5c;
    font-size: 11px;
    line-height: 1.5;
}

.garantia-passos strong {
    color: #43383a;
}

.pagamento-seguro {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 21px;
    padding: 17px 18px;
    border-left: 3px solid var(--dourado);
    border-radius: 0 14px 14px 0;
    background: #fffaf3;
}

.pagamento-simbolo {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rosa-escuro);
    color: #fff;
    font-size: 12px;
}

.pagamento-seguro strong {
    display: block;
    margin-bottom: 4px;
    color: var(--preto);
    font-size: 12px;
}

.pagamento-seguro p {
    font-size: 10px;
    line-height: 1.55;
}

.seguranca-recursos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 20px;
    border: 1px solid rgba(127, 57, 73, .09);
    border-radius: 19px;
    background: #fffdfb;
}

.seguranca-recursos > div {
    padding: 18px;
    text-align: center;
}

.seguranca-recursos > div + div {
    border-left: 1px solid rgba(127, 57, 73, .09);
}

.seguranca-recursos strong,
.seguranca-recursos span {
    display: block;
}

.seguranca-recursos strong {
    margin-bottom: 4px;
    color: var(--rosa-escuro);
    font-size: 11px;
}

.seguranca-recursos span {
    color: #827477;
    font-size: 9px;
}

@media(max-width:900px) {
    .garantia-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 45px;
        text-align: center;
    }

    .garantia-texto h2 {
        text-align: center;
    }

    .garantia-passos,
    .pagamento-seguro {
        text-align: left;
    }

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

    .seguranca-recursos > div:nth-child(3) {
        border-left: 0;
    }

    .seguranca-recursos > div:nth-child(n+3) {
        border-top: 1px solid rgba(127, 57, 73, .09);
    }
}

@media(max-width:560px) {
    .garantia {
        padding: 72px 0;
    }

    .garantia-box {
        padding: 30px 20px;
    }

    .circulo-garantia {
        width: 190px;
        height: 190px;
    }

    .seguranca-recursos {
        grid-template-columns: 1fr;
    }

    .seguranca-recursos > div + div {
        border-top: 1px solid rgba(127, 57, 73, .09);
        border-left: 0;
    }
}

/* =====================================================
   FASE 13 — RODAPÉ E INFORMAÇÕES LEGAIS
===================================================== */
.footer {
    padding: 74px 0 28px;
    background: #2d2425;
}

.footer::before,
.footer::after {
    opacity: .35;
}

.footer-content {
    grid-template-columns: 1.6fr .8fr 1fr 1fr;
    gap: 45px;
}

.footer-logo {
    margin-bottom: 16px;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 600;
}

.footer-logo span {
    margin-top: 7px;
    color: #d7b981;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-brand p {
    color: #c9c0c1;
    font-size: 12px;
    line-height: 1.75;
}

.footer-links h3,
.footer-security h3 {
    margin-bottom: 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 600;
}

.footer-links ul {
    gap: 11px;
}

.footer-links a {
    color: #c9c0c1;
    font-size: 11px;
}

.footer-links a:hover {
    color: #e2c58e;
    padding-left: 3px;
}

.social-links a {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .05);
    font-size: 10px;
}

.social-links a:hover {
    background: var(--rosa-escuro);
}

.security-card {
    gap: 9px;
    margin-bottom: 9px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: none;
}

.security-symbol {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(226, 197, 142, .14);
    color: #e2c58e;
    font-size: 9px;
}

.security-card span:last-child {
    color: #c9c0c1;
    font-size: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 22px;
    color: #9f9294;
    font-size: 9px;
    text-align: left;
}

.footer-domain {
    letter-spacing: .08em;
}

/* Páginas legais */
.legal-page {
    min-height: 100vh;
    background: #f8f2f0;
}

.legal-header {
    position: static;
    background: #fffdfb;
}

.legal-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-back {
    padding: 10px 15px;
    border: 1px solid rgba(127, 57, 73, .14);
    border-radius: 999px;
    color: var(--rosa-escuro);
    font-size: 11px;
    font-weight: 700;
}

.legal-main {
    padding: 70px 20px 90px;
}

.legal-content {
    max-width: 850px;
    margin: auto;
    padding: 55px 60px;
    border: 1px solid rgba(127, 57, 73, .09);
    border-radius: 28px;
    background: #fffdfb;
    box-shadow: 0 20px 50px rgba(74, 49, 52, .08);
}

.legal-content h1 {
    margin: 20px 0 8px;
    color: var(--preto);
    font-size: 48px;
}

.legal-updated {
    margin-bottom: 42px;
    color: #8c7e80;
    font-size: 11px;
}

.legal-content h2 {
    margin: 30px 0 10px;
    color: var(--preto);
    font-size: 21px;
    text-align: left;
}

.legal-content p {
    color: #665a5c;
    font-size: 13px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--rosa-escuro);
    font-weight: 700;
}

@media(max-width:800px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-header .container {
        height: 75px;
    }

    .legal-header .logo-principal {
        font-size: 21px;
    }

    .legal-header .logo-principal small {
        font-size: 8px;
    }

    .legal-main {
        padding: 35px 14px 65px;
    }

    .legal-content {
        padding: 38px 24px;
        border-radius: 22px;
    }

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

/* =====================================================
   FASE 12 — PERGUNTAS FREQUENTES
===================================================== */
.faq {
    background: #fffdfb;
}

.faq .section-title {
    max-width: 760px;
}

.faq-container {
    max-width: 920px;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(127, 57, 73, .09);
    border-radius: 17px;
    background: #fffdfb;
    box-shadow: 0 10px 28px rgba(74, 49, 52, .05);
    backdrop-filter: none;
}

.faq-item:hover {
    transform: none;
    border-color: rgba(185, 150, 91, .34);
}

.faq-item.active {
    border-color: rgba(127, 57, 73, .20);
    box-shadow: 0 14px 34px rgba(74, 49, 52, .08);
}

.faq-question {
    gap: 20px;
    padding: 23px 25px;
    color: #403638;
    font-size: 15px;
    font-weight: 600;
}

.faq-question span {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    background: #f2e0e3;
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
}

.faq-question:focus-visible {
    outline: 3px solid rgba(185, 150, 91, .38);
    outline-offset: -3px;
}

.faq-answer p {
    padding: 0 70px 23px 25px;
    color: #6b5f61;
    font-size: 13px;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 320px;
}

.faq-suporte {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 920px;
    margin: 28px auto 0;
    padding: 21px 24px;
    border: 1px solid rgba(185, 150, 91, .27);
    border-radius: 17px;
    background: #fffaf3;
}

.faq-suporte strong,
.faq-suporte span {
    display: block;
}

.faq-suporte strong {
    margin-bottom: 4px;
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
}

.faq-suporte span {
    color: #817376;
    font-size: 11px;
}

.faq-suporte a {
    flex: 0 0 auto;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--rosa-escuro);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
}

@media(max-width:650px) {
    .faq-question {
        padding: 20px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 20px 22px;
        font-size: 12px;
    }

    .faq-suporte {
        flex-direction: column;
        text-align: center;
    }

    .faq-suporte a {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   FASE 11 — OFERTA E CHAMADA PARA COMPRA
===================================================== */
.oferta {
    padding: 105px 0 125px;
    background: linear-gradient(145deg, #f8eeee, #fffaf6);
}

.oferta .section-title {
    max-width: 790px;
}

.oferta-box {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    max-width: 1000px;
    padding: 0;
    border: 1px solid rgba(127, 57, 73, .11);
    border-top: 4px solid var(--dourado);
    border-radius: 32px;
    background: #fffdfb;
    overflow: hidden;
    text-align: left;
}

.oferta-conteudo {
    padding: 48px 44px;
}

.oferta-header {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(127, 57, 73, .10);
}

.oferta-badge {
    margin-bottom: 17px;
    padding: 8px 13px;
    background: #f3e3e5;
    color: var(--rosa-escuro);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oferta-header h3 {
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 37px;
    line-height: 1.15;
}

.oferta-header p {
    margin-top: 6px;
    font-size: 13px;
}

.oferta-inclusos {
    margin: 25px 0 0;
    padding: 0;
    background: transparent;
}

.oferta-inclusos h3 {
    margin-bottom: 16px;
    color: var(--preto);
    font-size: 14px;
}

.oferta-inclusos ul {
    gap: 10px;
}

.oferta-inclusos li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #5f5355;
    font-size: 12px;
    line-height: 1.45;
}

.oferta-inclusos li span {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1dfe3;
    color: var(--rosa-escuro);
    font-size: 10px;
    font-weight: 800;
}

.oferta-compra {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 38px;
    border-left: 1px solid rgba(127, 57, 73, .09);
    background: #faf5f3;
    text-align: center;
}

.valor-box {
    width: 100%;
    margin: 0 0 27px;
}

.valor-label {
    display: block;
    margin-bottom: 7px;
    color: #826f72;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.valor-atual {
    margin: 0;
    color: var(--rosa-escuro);
    background: none;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 68px;
    font-weight: 600;
    line-height: 1;
    -webkit-text-fill-color: currentColor;
}

.valor-atual small {
    margin-right: 5px;
    font-size: 23px;
}

.valor-avista {
    margin-top: 5px;
    color: #76696b;
    font-size: 12px;
}

.valor-divisor {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 17px 0 13px;
    color: #9a8c8e;
    font-size: 10px;
}

.valor-divisor::before,
.valor-divisor::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(127, 57, 73, .12);
}

.valor-parcelado {
    color: #625658;
    font-size: 13px;
}

.valor-parcelado strong {
    color: var(--preto);
    font-size: 17px;
}

.valor-observacao {
    display: block;
    margin-top: 7px;
    color: #94878a;
    font-size: 9px;
}

.oferta-compra .btn-primary {
    width: 100%;
    min-width: 0;
    padding: 17px 20px;
    background: var(--rosa-escuro);
    font-size: 12px;
    letter-spacing: .04em;
    white-space: normal;
}

.oferta-checkout {
    margin-top: 11px;
    color: #887a7c;
    font-size: 9px;
}

.oferta-compra .seguranca {
    display: grid;
    gap: 7px;
    width: 100%;
    margin-top: 21px;
    padding-top: 18px;
    border-top: 1px solid rgba(127, 57, 73, .10);
    color: #716467;
    font-size: 10px;
    text-align: left;
}

@media(max-width:850px) {
    .oferta-box {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .oferta-compra {
        border-top: 1px solid rgba(127, 57, 73, .09);
        border-left: 0;
    }
}

@media(max-width:560px) {
    .oferta {
        padding: 75px 0 105px;
    }

    .oferta-conteudo,
    .oferta-compra {
        padding: 34px 23px;
    }

    .oferta-header h3 {
        font-size: 31px;
    }

    .valor-atual {
        font-size: 58px;
    }
}

/* =====================================================
   FASE 8 — COMO O CURSO FUNCIONA
===================================================== */
.como-funciona {
    position: relative;
    overflow: hidden;
    background: #fffdfb;
}

.como-funciona::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    width: 620px;
    height: 420px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 95, 114, .08), transparent 68%);
    pointer-events: none;
}

.como-funciona .section-title {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.jornada-curso {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.jornada-curso::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 150, 91, .55), transparent);
}

.jornada-item {
    position: relative;
    min-height: 290px;
    padding: 28px 21px 24px;
    border: 1px solid rgba(127, 57, 73, .09);
    border-radius: 22px;
    background: #fffdfb;
    box-shadow: 0 14px 34px rgba(74, 49, 52, .07);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.jornada-item:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 150, 91, .34);
    box-shadow: 0 20px 42px rgba(74, 49, 52, .10);
}

.jornada-numero {
    position: absolute;
    top: 17px;
    right: 18px;
    color: rgba(127, 57, 73, .17);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
}

.jornada-icone {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 1px solid rgba(185, 150, 91, .28);
    border-radius: 50%;
    background: #f8efea;
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
}

.jornada-item h3 {
    min-height: 50px;
    margin-bottom: 11px;
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 1.2;
}

.jornada-item p {
    font-size: 12px;
    line-height: 1.65;
}

.acesso-vitalicio {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 38px;
    padding: 24px 28px;
    border: 1px solid rgba(127, 57, 73, .10);
    border-radius: 22px;
    background: #f8f1f0;
}

.acesso-vitalicio > div {
    display: flex;
    align-items: center;
    gap: 17px;
}

.acesso-simbolo {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rosa-escuro);
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 29px;
}

.acesso-vitalicio strong {
    display: block;
    margin-bottom: 3px;
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 21px;
}

.acesso-vitalicio p {
    font-size: 12px;
}

.acesso-vitalicio .btn-primary {
    flex: 0 0 auto;
    padding: 16px 25px;
    font-size: 12px;
}

@media(max-width:1050px) {
    .jornada-curso {
        grid-template-columns: repeat(3, 1fr);
    }

    .jornada-curso::before {
        display: none;
    }
}

@media(max-width:720px) {
    .jornada-curso {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: auto;
    }

    .jornada-item {
        min-height: auto;
        display: grid;
        grid-template-columns: 58px 1fr;
        column-gap: 18px;
        padding: 24px;
        text-align: left;
    }

    .jornada-icone {
        grid-row: 1 / 3;
        margin: 0;
    }

    .jornada-item h3 {
        min-height: auto;
        margin: 3px 0 7px;
    }

    .acesso-vitalicio {
        flex-direction: column;
        text-align: center;
    }

    .acesso-vitalicio > div {
        flex-direction: column;
    }

    .acesso-vitalicio .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   FASE 9 — BÔNUS E MATERIAIS INCLUÍDOS
===================================================== */
.bonus .section-title {
    position: relative;
    z-index: 1;
    max-width: 790px;
}

.bonus-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 52px;
}

.bonus-card {
    display: flex;
    flex-direction: column;
    min-height: 455px;
    padding: 32px 28px 28px;
    border-radius: 24px;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-numero {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #9a8588;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.bonus-card .bonus-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border: 1px solid rgba(185, 150, 91, .30);
    background: #f7e9e9;
    color: var(--rosa-escuro);
    box-shadow: none;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
}

.bonus-card:hover .bonus-icon {
    transform: none;
}

.bonus-card h3 {
    margin-bottom: 13px;
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    line-height: 1.2;
}

.bonus-card > p {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.7;
}

.bonus-itens {
    display: grid;
    gap: 9px;
    margin-bottom: 24px;
}

.bonus-itens li {
    position: relative;
    padding-left: 18px;
    color: #675b5d;
    font-size: 11px;
    line-height: 1.45;
}

.bonus-itens li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rosa-escuro);
    font-weight: 800;
}

.bonus-entrega {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid rgba(127, 57, 73, .10);
}

.bonus-entrega span {
    color: #8a7b7d;
    font-size: 10px;
}

.bonus-entrega strong {
    color: var(--rosa-escuro);
    font-size: 10px;
    text-transform: uppercase;
}

.bonus-resumo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 34px;
    padding: 21px 25px;
    border: 1px solid rgba(185, 150, 91, .28);
    border-radius: 18px;
    background: #fffaf4;
}

.bonus-resumo > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bonus-resumo-simbolo {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rosa-escuro);
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
}

.bonus-resumo p {
    font-size: 12px;
    line-height: 1.55;
}

.bonus-resumo a {
    flex: 0 0 auto;
    color: var(--rosa-escuro);
    font-size: 12px;
    font-weight: 700;
}

@media(max-width:950px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .bonus-card {
        min-height: auto;
    }
}

@media(max-width:680px) {
    .bonus-resumo {
        flex-direction: column;
        text-align: center;
    }

    .bonus-resumo > div {
        flex-direction: column;
    }
}

/* =====================================================
   FASE 7 — CONTEÚDO DO CURSO
===================================================== */
.modulos .section-title {
    max-width: 790px;
}

.modulos-resumo {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 960px;
    margin: -10px auto 48px;
    border: 1px solid rgba(127, 57, 73, .10);
    border-radius: 22px;
    background: #fffdfb;
    box-shadow: 0 14px 38px rgba(74, 49, 52, .07);
}

.modulos-resumo > div {
    padding: 20px 18px;
    text-align: center;
}

.modulos-resumo > div + div {
    border-left: 1px solid rgba(127, 57, 73, .10);
}

.modulos-resumo strong,
.modulos-resumo span {
    display: block;
}

.modulos-resumo strong {
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
}

.modulos-resumo span {
    margin-top: 4px;
    color: #7b6e70;
    font-size: 11px;
}

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

.modulo {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    column-gap: 18px;
    align-items: start;
    padding: 28px;
    text-align: left;
}

.modulo .numero {
    display: none;
}

.modulo .icone {
    grid-row: 1 / 5;
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 50%;
    background: #f3e1e5;
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    font-weight: 700;
}

.modulo h3 {
    grid-column: 2;
    margin: 1px 0 8px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
}

.modulo > p {
    grid-column: 2 / 4;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.65;
}

.modulo ul {
    grid-column: 2 / 4;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 17px;
}

.modulo li {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f8f1f0;
    color: #675a5c;
    font-size: 10px;
    line-height: 1.3;
}

.modulo li::before {
    content: "✓";
    margin-right: 5px;
    color: var(--rosa-escuro);
    font-weight: 800;
}

.modulo .duracao {
    grid-column: 2 / 4;
    position: static;
    width: fit-content;
    padding: 7px 11px;
    border: 1px solid rgba(185, 150, 91, .25);
    border-radius: 999px;
    background: #fffaf3;
    color: #755f3c;
    font-size: 10px;
    font-weight: 700;
}

.modulo .duracao-pendente {
    border-color: rgba(127, 57, 73, .14);
    background: #f7ebed;
    color: var(--rosa-escuro);
}

.modulo.destaque {
    background: linear-gradient(145deg, #fffdfb, #fbf2ec);
}

.modulo.destaque::before {
    content: "TÉCNICA PRINCIPAL";
    top: 22px;
    right: 22px;
    width: auto;
    height: auto;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--rosa-escuro);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    transform: none;
    white-space: nowrap;
}

.modulos-aviso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 850px;
    margin: 34px auto 0;
    padding: 16px 20px;
    border: 1px solid rgba(127, 57, 73, .09);
    border-radius: 16px;
    background: #fffdfb;
}

.modulos-aviso span {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3e1e5;
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
}

.modulos-aviso p {
    font-size: 11px;
    line-height: 1.5;
}

@media(max-width:900px) {
    .modulos-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:680px) {
    .modulos-resumo {
        grid-template-columns: repeat(2, 1fr);
    }

    .modulos-resumo > div:nth-child(3) {
        border-left: 0;
    }

    .modulos-resumo > div:nth-child(n+3) {
        border-top: 1px solid rgba(127, 57, 73, .10);
    }

    .modulo {
        grid-template-columns: 46px 1fr;
        column-gap: 14px;
        padding: 22px 18px;
    }

    .modulo .icone {
        width: 44px;
        height: 44px;
    }

    .modulo > p,
    .modulo ul,
    .modulo .duracao {
        grid-column: 1 / 3;
    }

    .modulo > p {
        margin-top: 14px;
    }

    .modulo.destaque::before {
        position: static;
        grid-column: 1 / 3;
        grid-row: auto;
        width: fit-content;
        margin-bottom: 12px;
        transform: none;
    }

    .modulos-aviso {
        align-items: flex-start;
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero h1 span {
        font-size: .72em;
    }

    .hero-price {
        width: 100%;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    .hero-price div {
        padding-right: 15px;
    }

    .hero-price strong {
        font-size: 27px;
    }
}

/* =====================================================
   FASE 4 — IDENTIFICAÇÃO COM A FUTURA ALUNA
===================================================== */
.para-quem {
    position: relative;
    overflow: hidden;
    background: #fffdfb;
}

.para-quem::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 95, 114, .08), transparent 68%);
    pointer-events: none;
}

.para-quem .section-title {
    max-width: 790px;
    margin: 0 auto 52px;
}

.para-quem .section-title h2 {
    margin-bottom: 18px;
}

.para-quem .cards {
    position: relative;
    z-index: 1;
    gap: 22px;
}

.para-quem .card {
    position: relative;
    min-height: 310px;
    padding: 34px 28px 30px;
    text-align: left;
    border-radius: 24px;
}

.para-quem .card-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(127, 57, 73, .18);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 29px;
    font-weight: 700;
}

.para-quem .card-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 50%;
    background: #f3e1e5;
    color: var(--rosa-escuro);
    font-size: 18px;
}

.para-quem .card h3 {
    max-width: 220px;
    margin-bottom: 14px;
    color: var(--preto);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    line-height: 1.2;
}

.para-quem .card p {
    color: #675c5e;
    font-size: 14px;
    line-height: 1.7;
}

.para-quem-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 820px;
    margin: 38px auto 0;
    padding: 18px 24px;
    border: 1px solid rgba(185, 150, 91, .30);
    border-radius: 18px;
    background: #faf5ed;
    text-align: left;
}

.para-quem-note span {
    flex: 0 0 auto;
    color: var(--rosa-escuro);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
}

.para-quem-note p {
    margin: 0;
    padding-left: 18px;
    border-left: 1px solid rgba(185, 150, 91, .35);
    font-size: 13px;
    line-height: 1.55;
}

@media(max-width:1100px) {
    .para-quem .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .para-quem .card {
        min-height: 270px;
    }
}

@media(max-width:768px) {
    .para-quem .cards {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: auto;
    }

    .para-quem .card {
        min-height: auto;
    }

    .para-quem-note {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .para-quem-note p {
        padding: 10px 0 0;
        border-top: 1px solid rgba(185, 150, 91, .35);
        border-left: 0;
    }
}
