/* ====================================================
   Design System: Elegância Corporativa Premium (Dra. Mariana)
   ==================================================== */
:root {
    /* Cores verificadas a partir das referências */
    --color-bg-velvet: #29281E;         /* Green Velvet (Fundo Principal) */
    --color-bg-darker: #1D1D16;         /* Verde Velvet ainda mais escuro para contrastes e cabeçalhos */
    --color-bg-card: #353427;           /* Velvet suave para cards e blocos de conteúdo */
    
    --color-accent-sand: #857861;       /* Golden Sandlewood (Bordas e Detalhes) */
    --color-accent-almond: #E7D4BB;     /* Almond Light (Destaques e Títulos Principais) */
    --color-accent-almond-hover: #D8C3A5;
    
    /* Cores de suporte */
    --color-text-white: #FFFFFF;
    --color-text-muted: #C5C3B7;
    --color-accent-green: #00A86B;      /* Verde Whatsapp / Suporte */
    --color-border: rgba(231, 212, 187, 0.12); /* Almond com opacidade para bordas sutis */

    /* Tipografia oficial */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --section-padding: 80px 20px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================================
   Reset & Globals
   ==================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-white);
    background-color: var(--color-bg-velvet);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-accent-almond);
}

h2, .section-title, .bio-title, .offer-title, .support-title {
    font-size: 2.4rem !important; /* Padronizado com o mesmo tamanho da dobra de mecanismo (2.4rem) */
}

p {
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ====================================================
   Layout Utilities
   ==================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-accent-sand);
    margin: 0 auto 30px;
}

.divider.left {
    margin: 0 0 30px 0;
}

/* ====================================================
   Botões e Ações (Estilo Premium)
   ==================================================== */
.btn-primary {
    display: inline-block;
    background-color: var(--color-accent-almond);
    color: var(--color-bg-velvet);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 18px 38px;
    border: 1px solid var(--color-accent-sand);
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 212, 187, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: var(--color-accent-almond-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 212, 187, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-support {
    display: inline-block;
    background-color: transparent;
    color: var(--color-accent-green);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border: 1px solid var(--color-accent-green);
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.btn-support:hover {
    background-color: rgba(0, 168, 107, 0.08);
    transform: translateY(-1px);
}

/* ====================================================
   Cabeçalho da Página
   ==================================================== */
.site-header {
    background-color: rgba(29, 29, 22, 0.9);
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    display: block;
}

/* Compensação para a barra fixa (removida) */
body {
    padding-top: 0;
}

/* ====================================================
   Dobra 1: Hero Section
   ==================================================== */
.hero-section {
    position: relative;
    padding: 60px 20px;
    min-height: 100vh; /* Enquadrado para o tamanho da tela do computador */
    display: flex;
    align-items: center;
    background-color: var(--color-bg-darker);
    overflow: hidden;
}

/* Background com imagem de escritório com tamanho 100% sem filtro de opacidade */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagens/fundo_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; /* Sem filtro de opacidade */
    z-index: 0;
}

/* Gradiente para escurecer o background do escritório e fundir com a cor de fundo */
.hero-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 29, 22, 0.95) 0%, rgba(29, 29, 22, 0.8) 50%, rgba(29, 29, 22, 0.9) 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 48%;
    height: 100%;
    background-image: url('imagens/imagem-da-dra.png');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 2;
}

.hero-bg-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, var(--color-bg-darker) 0%, rgba(29, 29, 22, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Filtro CSS para transformar a logo original (preta) em branca */
.logo-white {
    height: 108px; /* Aumentada em 30% adicionais (83px * 1.3 = 107.9px) */
    display: block;
    filter: brightness(0) invert(1);
    margin-bottom: 5px;
}

.hero-badge {
    align-self: flex-start;
    font-size: 0.95rem; /* Reduzido em 20% (1.18rem * 0.8 = 0.944rem) */
    font-weight: 600;
    color: var(--color-accent-almond);
    border: 1px solid var(--color-accent-sand);
    padding: 6px 16px;
    border-radius: 50px;
    background-color: rgba(133, 120, 97, 0.15);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem; /* Reduzido em 20% (4.4rem * 0.8 = 3.52rem) */
    line-height: 1.2;
    color: var(--color-text-white);
}

.hero-subheadline {
    font-size: 1.26rem; /* Reduzido em 20% (1.58rem * 0.8 = 1.264rem) */
    color: var(--color-text-muted);
    line-height: 1.6;
}

.hero-cta {
    margin-top: 10px;
}

/* ====================================================
   Dobra 2: Para Quem É
   ==================================================== */
.for-whom-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-velvet);
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
}

.for-whom-card {
    background-color: rgba(231, 212, 187, 0.05); /* Clareado com transparência elegante Almond */
    border: 1px solid rgba(231, 212, 187, 0.15);
    padding: 45px 35px;
    border-radius: 12px; /* Cantos um pouco mais arredondados e modernos */
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Efeito 3D de profundidade e brilho superior */
    transform-style: preserve-3d;
    perspective: 1000px;
}

.for-whom-card:hover {
    border-color: var(--color-accent-almond);
    background-color: rgba(231, 212, 187, 0.09); /* Clareia ainda mais no hover */
    transform: translateY(-8px) rotateX(4deg) rotateY(-2deg); /* Efeito 3D de rotação ao passar o mouse */
    box-shadow: 0 20px 40px rgba(231, 212, 187, 0.12), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.for-whom-icon {
    font-size: 2.6rem;
    color: var(--color-accent-almond);
    filter: drop-shadow(0 4px 8px rgba(231, 212, 187, 0.3)); /* Brilho de profundidade no ícone */
    transform: translateZ(20px); /* Traz o ícone "para frente" no espaço 3D */
}

.for-whom-card p {
    font-size: 1.1rem;
    color: var(--color-text-white);
    line-height: 1.6;
    transform: translateZ(10px); /* Traz o texto sutilmente para frente */
}

.for-whom-footer {
    max-width: 800px;
    margin: 40px auto 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-accent-almond);
}

/* ====================================================
   Dobra 3: O Problema
   ==================================================== */
.problem-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-darker);
}

.problem-box {
    border-left: 3px solid var(--color-accent-sand);
    padding-left: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.problem-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.problem-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.problem-text p {
    margin-bottom: 20px;
}

.problem-text p:last-child {
    margin-bottom: 0;
}

/* ====================================================
   Dobra 4: Mecanismo / Novo Caminho
   ==================================================== */
.mechanism-section {
    position: relative;
    padding: 100px 20px;
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

/* Background com a imagem objetos.png com opacidade de 8% para quase sumir no fundo verde/preto do site */
.mechanism-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagens/objetos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%); 
    opacity: 0.65; /* Ajustado para 65% de opacidade */
    z-index: 0;
}

/* Mesma camada de gradiente/filtro aplicada no Hero */
.mechanism-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 29, 22, 0.95) 0%, rgba(29, 29, 22, 0.8) 50%, rgba(29, 29, 22, 0.9) 100%);
    z-index: 1;
}

.mechanism-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mechanism-title {
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mechanism-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-white);
}

/* ====================================================
   Dobra 5: O que é o PPS Business (Pilares)
   ==================================================== */
.about-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background-color: rgba(231, 212, 187, 0.05); /* Clareado com transparência elegante Almond */
    border: 1px solid rgba(231, 212, 187, 0.15);
    padding: 45px 35px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-card:hover {
    border-color: var(--color-accent-almond);
    background-color: rgba(231, 212, 187, 0.09); /* Clareia ainda mais no hover */
    transform: translateY(-8px) rotateX(4deg) rotateY(-2deg); /* Giro 3D suave no hover */
    box-shadow: 0 20px 40px rgba(231, 212, 187, 0.12), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-icon-wrapper {
    font-size: 2.5rem;
    color: var(--color-accent-almond);
    filter: drop-shadow(0 4px 8px rgba(231, 212, 187, 0.3));
    transform: translateZ(20px);
    margin-bottom: 5px;
}

.about-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent-almond);
    transform: translateZ(15px);
}

.about-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-white);
    transform: translateZ(10px);
}

/* ====================================================
   Dobra 6: Jornada de Formação (Módulos)
   ==================================================== */
.journey-section {
    padding: 80px 20px;
    background-color: var(--color-bg-velvet);
    min-height: 100vh; /* Enquadrado para o tamanho da tela do computador */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.journey-carousel-wrapper {
    width: 100%;
    max-width: 1120px;
    margin: 40px auto 20px;
    position: relative;
}

.journey-grid {
    width: 100%;
}

.journey-card {
    background-color: rgba(231, 212, 187, 0.04); /* Fundo translúcido refinado */
    border: 1px solid rgba(231, 212, 187, 0.15);
    padding: 26px 35px; /* Maior preenchimento interno para os textos respirarem */
    border-radius: 12px; /* Cantos arredondados de alta sofisticação */
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

.journey-card:hover {
    border-color: var(--color-accent-almond);
    background-color: rgba(231, 212, 187, 0.08); /* Clareamento no hover */
    transform: translateY(-4px); /* Leve elevação flutuante */
    box-shadow: 0 15px 35px rgba(231, 212, 187, 0.08), 0 10px 30px rgba(0, 0, 0, 0.35);
}

.journey-card-num {
    font-family: var(--font-heading);
    font-size: 1.7rem; /* Números romanos ligeiramente maiores */
    font-weight: 700;
    color: var(--color-accent-almond);
    border-right: 1px solid rgba(231, 212, 187, 0.2);
    padding-right: 25px;
    min-width: 55px;
    text-align: center;
}

.journey-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-white);
    text-align: left;
}

.journey-footer {
    font-size: 1.15rem;
    color: var(--color-accent-almond);
    font-weight: 500;
    margin-top: 30px;
}

/* Comportamento Desktop: Grid de 2 colunas */
@media (min-width: 992px) {
    .journeySlider {
        overflow: visible !important;
    }
    .journeySlider .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px 35px !important;
        transform: none !important;
        width: 100% !important;
    }
    .journeySlider .swiper-slide {
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
    }
    .journeySlider .swiper-slide:nth-child(7) {
        grid-column: span 2 !important;
    }
    .journey-pagination {
        display: none !important;
    }
}

/* Comportamento Mobile: Carrossel Deslizável */
@media (max-width: 991px) {
    .journeySlider {
        width: 100%;
        padding-bottom: 45px !important;
        overflow: hidden;
    }
    .journeySlider .swiper-wrapper {
        display: flex !important;
        gap: 0 !important;
    }
    .journeySlider .swiper-slide {
        height: auto !important;
    }
    .journey-card {
        padding: 22px 20px !important;
        gap: 15px !important;
        min-height: 120px;
    }
    .journey-card-num {
        font-size: 1.4rem;
        padding-right: 15px;
        min-width: 42px;
    }
    .journey-pagination {
        position: absolute;
        bottom: 5px !important;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .journey-pagination .swiper-pagination-bullet {
        background: rgba(231, 212, 187, 0.4);
    }
    .journey-pagination .swiper-pagination-bullet-active {
        background: var(--color-accent-almond) !important;
    }
}

/* ====================================================
   Dobra 7: Como Funciona
   ==================================================== */
.how-section {
    padding: 80px 20px;
    background-color: var(--color-bg-darker);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0 50px;
}

.how-card {
    background-color: rgba(231, 212, 187, 0.05); /* Clareado com transparência elegante Almond */
    border: 1px solid rgba(231, 212, 187, 0.15);
    padding: 50px 25px; /* Mais comprido verticalmente */
    min-height: 280px;  /* Altura mínima garantida para sofisticação e enquadramento simétrico */
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza conteúdo verticalmente */
    gap: 20px;
    align-items: center;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.how-card:hover {
    border-color: var(--color-accent-almond);
    background-color: rgba(231, 212, 187, 0.09); /* Clareia ainda mais no hover */
    transform: translateY(-8px) rotateX(4deg) rotateY(-2deg); /* Giro 3D suave no hover */
    box-shadow: 0 20px 40px rgba(231, 212, 187, 0.12), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.how-icon {
    font-size: 2.6rem;
    color: var(--color-accent-almond);
    filter: drop-shadow(0 4px 8px rgba(231, 212, 187, 0.3));
    transform: translateZ(20px);
    margin-bottom: 5px;
}

.how-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-white);
    transform: translateZ(10px);
}

.how-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.how-cta-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Aumentado em 20% (1.25rem -> 1.5rem) */
    font-weight: 600;
    color: var(--color-accent-almond);
    font-style: italic;
    letter-spacing: 0.01em;
    margin-top: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ====================================================
   Dobra 8: Professores Convidados (Carrossel Swiper)
   ==================================================== */
.professors-section {
    position: relative;
    padding: 80px 20px;
    background-color: var(--color-bg-velvet);
}

.professors-section .container {
    position: relative;
    z-index: 1;
}

.professors-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.professors-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.professors-intro p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Swiper Wrapper & Cards do Carrossel */
.specialists-carousel-wrapper {
    width: 100%;
    margin-top: 40px;
}

.specialistsSlider {
    width: 100%;
    padding: 20px 0 60px 0;
}

.speaker-card {
    background-color: rgba(231, 212, 187, 0.03);
    border: 1px solid rgba(231, 212, 187, 0.12);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.speaker-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-almond);
    background-color: rgba(231, 212, 187, 0.07);
    box-shadow: 0 15px 35px rgba(231, 212, 187, 0.08), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.speaker-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    border-bottom: 1px solid rgba(231, 212, 187, 0.15);
    background-color: var(--color-bg-darker);
    transition: transform 0.6s var(--transition-smooth);
}

.speaker-img-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(231, 212, 187, 0.03) 0%, rgba(29, 29, 22, 0.6) 100%);
    border-bottom: 1px solid rgba(231, 212, 187, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(231, 212, 187, 0.2);
    font-size: 5rem;
    transition: var(--transition-smooth);
}

.speaker-card:hover .speaker-img-placeholder {
    color: var(--color-accent-almond);
    background: linear-gradient(135deg, rgba(231, 212, 187, 0.08) 0%, rgba(29, 29, 22, 0.4) 100%);
}

.speaker-card:hover .speaker-img {
    transform: scale(1.04);
}

/* Ajustes finos de enquadramento padronizados */
div[data-name="Alessandro Meliso"] .speaker-img {
    object-position: center top !important;
}

div[data-name="Jefferson Valentin"] .speaker-img {
    object-position: center top !important;
}

.speaker-info {
    padding: 24px 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.speaker-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent-almond);
    margin: 0;
}

.speaker-theme {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-cv {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: auto; /* Empurra para o final do card */
}

/* Customização dos bullets e botões do Swiper */
.specialistsSlider .swiper-pagination-bullet {
    background: var(--color-text-white) !important;
    opacity: 0.3;
}

.specialistsSlider .swiper-pagination-bullet-active {
    background: var(--color-accent-almond) !important;
    opacity: 1;
}

.specialistsSlider .swiper-button-next,
.specialistsSlider .swiper-button-prev {
    color: var(--color-accent-almond) !important;
    transform: scale(0.8);
}

/* ====================================================
   Dobra 9: Entregáveis (O que recebe)
   ==================================================== */
.deliverables-section {
    position: relative;
    padding: 60px 20px;
    background-color: var(--color-bg-darker);
    min-height: 100vh; /* Enquadrado para o tamanho da tela do computador */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background com a imagem estátua.png sem filtro de opacidade */
.deliverables-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagens/estatua.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; /* Sem filtro de opacidade */
    z-index: 0;
}

/* Camada de escurecimento para dar contraste ao texto */
.deliverables-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(29, 29, 22, 0.95) 0%, rgba(29, 29, 22, 0.85) 50%, rgba(29, 29, 22, 0.95) 100%);
    z-index: 1;
}

.deliverables-section .container {
    position: relative;
    z-index: 2;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas horizontais simétricas */
    gap: 25px; /* Aumentado espaçamento para respirar visualmente */
    margin: 45px auto 0;
    width: 100%;
    max-width: 1200px; /* Aumenta a largura total para espalhar os cards pelas laterais */
}

.deliverable-card {
    background-color: rgba(231, 212, 187, 0.05); /* Clareado com transparência elegante Almond */
    border: 1px solid rgba(231, 212, 187, 0.15);
    padding: 35px 25px; /* Aumentado o padding vertical e horizontal */
    border-radius: 12px;
    display: flex;
    flex-direction: column; /* Organização vertical para os cards menores */
    gap: 20px; /* Espaço maior entre ícone e texto */
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
    min-height: 220px; /* Garante altura simétrica e elegante para todos */
    justify-content: center;
}

.deliverable-card:hover {
    border-color: var(--color-accent-almond);
    background-color: rgba(231, 212, 187, 0.09); /* Clareia ainda mais no hover */
    transform: translateY(-6px) rotateX(4deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(231, 212, 187, 0.12), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.deliverable-card-icon {
    font-size: 2.4rem; /* Ícone levemente maior */
    color: var(--color-accent-almond);
    filter: drop-shadow(0 4px 8px rgba(231, 212, 187, 0.3));
    transform: translateZ(20px);
}

.deliverable-card-text {
    font-size: 1rem; /* Texto levemente maior e mais legível */
    line-height: 1.5;
    color: var(--color-text-white);
    transform: translateZ(10px);
}

/* Card especial do Bônus alinhado na mesma linha */
.deliverable-card.bbonus-card {
    grid-column: span 3; /* Ocupa as 3 colunas restantes na 3ª linha */
    flex-direction: row; /* Alinhamento horizontal para o bônus estendido */
    text-align: left;
    background: linear-gradient(135deg, rgba(231, 212, 187, 0.08) 0%, rgba(133, 120, 97, 0.08) 100%);
    border: 1px solid rgba(231, 212, 187, 0.3);
    padding: 30px 40px;
    align-items: center;
    box-shadow: 0 15px 35px rgba(231, 212, 187, 0.05), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.deliverable-card.bbonus-card .deliverable-card-icon {
    font-size: 2.8rem;
    margin-right: 10px;
}

.deliverable-card.bbonus-card .deliverable-card-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ====================================================
   Dobra 10: Depoimentos
   ==================================================== */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-velvet);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 6px;
    position: relative;
}

.testimonial-card.testimonial-img-card {
    padding: 12px;
    background-color: rgba(231, 212, 187, 0.04);
    border: 1px solid rgba(231, 212, 187, 0.2);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
}

.testimonial-card.testimonial-img-card::before {
    display: none; /* Desativa a aspa em formato de marca d'água para cards com imagem */
}

.testimonial-card.testimonial-img-card:hover {
    border-color: var(--color-accent-almond);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(231, 212, 187, 0.1), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: contain;
}

.testimonial-card.testimonial-video-card {
    padding: 12px;
    background-color: rgba(231, 212, 187, 0.04);
    border: 1px solid rgba(231, 212, 187, 0.2);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 260px; /* Reduzido de 344px para 260px para diminuir a escala geral do vídeo */
    margin: 0 auto;
}

.testimonial-card.testimonial-video-card::before {
    display: none;
}

.testimonial-card.testimonial-video-card:hover {
    border-color: var(--color-accent-almond);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(231, 212, 187, 0.1), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video-container {
    width: 100%;
    aspect-ratio: 9 / 16; /* Proporção nativa do Shorts/Celular */
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(231, 212, 187, 0.05);
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ====================================================
   Dobra 11: Oferta
   ==================================================== */
.transition-block {
    background: linear-gradient(180deg, var(--color-bg-velvet) 0%, var(--color-bg-darker) 100%);
    padding: 60px 20px;
}

.transition-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.offer-section {
    padding: 80px 20px 100px;
    background-color: var(--color-bg-darker);
}

.offer-box {
    background: linear-gradient(135deg, rgba(231, 212, 187, 0.05) 0%, rgba(41, 40, 30, 0.95) 100%);
    border: 1px solid rgba(231, 212, 187, 0.25);
    border-radius: 16px;
    padding: 60px 45px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.offer-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--color-accent-almond);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.prices-box {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-old {
    font-size: 1.15rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.price-new {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-accent-almond);
    letter-spacing: -0.5px;
}

.price-installments {
    font-size: 1.45rem;
    color: var(--color-text-white);
    font-weight: 600;
}

.offer-advantages {
    border-top: 1px solid rgba(231, 212, 187, 0.15);
    border-bottom: 1px solid rgba(231, 212, 187, 0.15);
    padding: 35px 0;
    margin-bottom: 35px;
    text-align: left;
}

.advantages-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-white);
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantages-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.advantage-icon {
    color: var(--color-accent-almond);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantages-footer-text {
    font-size: 1rem;
    margin-top: 20px;
    font-weight: 700;
    color: var(--color-accent-almond);
}

.countdown-box {
    margin-bottom: 45px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(231, 212, 187, 0.1);
    border-radius: 12px;
    padding: 25px 15px;
}

.countdown-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: linear-gradient(135deg, #690000 0%, #3a0000 100%); /* Vermelho escuro/bordeaux premium e chamativo */
    border: 1px solid rgba(231, 212, 187, 0.25);
    border-radius: 8px;
    min-width: 80px;
    padding: 12px 10px;
    box-shadow: 0 5px 15px rgba(105, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(105, 0, 0, 0.5);
    border-color: var(--color-accent-almond);
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1;
}

.countdown-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--color-accent-almond);
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 600;
}

.offer-footer-ps {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 20px;
}

/* ====================================================
   Dobra 12: Garantia
   ==================================================== */
/* ====================================================
   Dobra 12: Garantia
   ==================================================== */
.warranty-section {
    padding: 80px 20px;
    background-color: var(--color-bg-darker);
}

.warranty-box {
    background: linear-gradient(135deg, rgba(231, 212, 187, 0.04) 0%, rgba(133, 120, 97, 0.04) 100%);
    border: 1px solid rgba(231, 212, 187, 0.15);
    border-radius: 16px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.warranty-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-almond);
    box-shadow: 0 20px 45px rgba(231, 212, 187, 0.08), 0 15px 35px rgba(0, 0, 0, 0.5);
}

.warranty-badge-wrapper {
    flex-shrink: 0;
}

.warranty-badge-wrapper svg {
    filter: drop-shadow(0 4px 12px rgba(231, 212, 187, 0.35));
}

.warranty-text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.warranty-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-almond);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin: 0;
}

.warranty-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-white);
    margin: 0;
}

.warranty-desc strong {
    color: var(--color-accent-almond);
}

/* ====================================================
   Dobra 13: Sobre a Mentora (Biografia)
   ==================================================== */
.bio-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-darker);
}

.bio-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: flex-start;
}

.bio-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.bio-photo {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--color-accent-sand);
    display: block;
}

.bio-signature {
    max-width: 312px; /* Aumentado em 20% adicionais (260px * 1.2 = 312px) */
    height: auto;
    display: block;
    opacity: 0.9;
}

.bio-text-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bio-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-almond);
    font-weight: 600;
}

.bio-title {
    font-size: 2.2rem;
}

.bio-description {
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.bio-description p {
    margin-bottom: 15px;
}

.bio-description p:last-child {
    margin-bottom: 0;
}

/* ====================================================
   Dobra 14: FAQ Acordeão
   ==================================================== */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-velvet);
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header:focus-visible {
    outline: 2px solid var(--color-accent-almond);
    outline-offset: -2px;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-white);
    text-align: left;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--color-accent-almond);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer {
    padding: 0 30px 22px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.faq-item.active {
    border-color: var(--color-accent-sand);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ====================================================
   Dobra 15: Suporte / Footer
   ==================================================== */
.support-section {
    padding: 100px 20px;
    background-color: var(--color-bg-darker);
    text-align: center;
}

.support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support-title {
    font-size: 2rem;
}

.support-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.site-footer {
    background-color: var(--color-bg-darker);
    padding: 40px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-top p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--color-accent-almond);
}

.footer-dot {
    color: var(--color-accent-sand);
    font-size: 0.85rem;
}

.hero-mobile-photo {
    display: none;
}

/* ====================================================
   Responsividade Mobile & Tablet Refinada
   ==================================================== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 20px !important;
        text-align: center;
        position: relative;
    }

    /* Filtro de degradê escuro contínuo para garantir fundo escuro dos textos */
    .hero-section::after {
        content: '';
        position: absolute;
        top: 25%;
        left: 0;
        width: 100%;
        height: 75%;
        background: linear-gradient(to bottom, 
            rgba(29, 29, 22, 0) 0%, 
            rgba(29, 29, 22, 0.85) 30%, 
            rgba(29, 29, 22, 0.98) 60%, 
            var(--color-bg-darker) 100%
        );
        z-index: 2;
        pointer-events: none;
    }
    
    .hero-bg-image {
        display: none; /* Em telas menores, a imagem do fundo desktop é omitida */
    }
    
    .hero-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 3;
    }

    .hero-mobile-photo {
        display: flex !important;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        /* Máscara de gradiente que desfaz a borda inferior cortada da foto de forma 100% invisível */
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 95%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 95%);
    }

    .hero-dra-img-mobile {
        max-width: 350px;
        width: 100%;
        height: auto;
        max-height: 445px;
        object-fit: contain;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.65));
    }
    
    .hero-text {
        max-width: 100%;
        align-items: center;
        padding-top: 0;
        gap: 14px;
        margin-top: -140px; /* Posicionamento harmônico sobreposto à imagem mascarada */
        position: relative;
        z-index: 4;
    }

    .hero-logo-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 6px 12px;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        z-index: 5;
    }

    /* Aura de fumaça orgânica e esfumaçada (sem cápsula sólida ou bordas) */
    .hero-logo-wrapper::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 170%;
        height: 170%;
        background: radial-gradient(ellipse at center, rgba(18, 18, 14, 0.85) 0%, rgba(18, 18, 14, 0.45) 55%, rgba(18, 18, 14, 0) 85%);
        z-index: -1;
        pointer-events: none;
    }

    .logo-white {
        height: 80px;
        margin-bottom: 0;
        filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.95));
    }

    .hero-badge {
        align-self: center;
        font-size: 0.72rem;
        font-weight: 600;
        line-height: 1.4;
        padding: 8px 16px;
        color: var(--color-accent-almond);
        border: 1px solid var(--color-accent-sand);
        border-radius: 50px;
        /* Fundo escuro com opacidade reforçada para leitura nítida e sem interferência da roupa */
        background-color: rgba(29, 29, 22, 0.95);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.25;
        text-align: center;
    }

    .hero-subheadline {
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: center;
        margin: 4px auto 12px;
    }
    
    .for-whom-grid, .about-grid, .how-grid, .deliverables-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deliverable-card.bbonus-card {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    
    .mentor-block {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mentor-photo-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .professors-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .bio-photo {
        max-width: 350px;
    }
    
    .warranty-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 16px !important;
        min-height: auto !important;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .hero-subheadline,
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 8px auto 18px;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .divider {
        margin: 15px auto 30px;
    }

    .btn-primary {
        width: 100%;
        display: block;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .how-cta-quote {
        font-size: 1.2rem;
        text-align: center;
    }

    .for-whom-grid, 
    .about-grid, 
    .how-grid, 
    .deliverables-grid, 
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .journey-card {
        padding: 20px;
        gap: 15px;
    }
    
    .journey-card-num {
        font-size: 1.4rem;
        padding-right: 15px;
        min-width: 45px;
    }

    .deliverable-card {
        padding: 25px 18px;
        min-height: auto;
    }

    .deliverable-card.bbonus-card {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .deliverable-card.bbonus-card .deliverable-card-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    /* Ajustes do Carrossel de Palestrantes */
    .specialists-carousel-wrapper {
        margin-top: 25px;
    }

    .speaker-card {
        min-height: auto;
        padding: 18px 16px;
    }

    .speaker-img {
        max-height: 320px;
        object-fit: cover;
    }

    .speaker-name {
        font-size: 1.3rem;
    }

    .speaker-theme {
        font-size: 1.05rem;
    }

    .speaker-cv {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .specialistsSlider .swiper-button-next,
    .specialistsSlider .swiper-button-prev {
        display: none !important; /* Oculta setas no celular para não sobrepor cartões */
    }

    .specialistsSlider .swiper-pagination {
        bottom: 15px !important;
    }

    /* Seção Mentora / Bio */
    .bio-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .bio-photo {
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
    }

    .bio-text-block {
        align-items: center;
        text-align: center;
    }

    .bio-title {
        font-size: 1.8rem;
    }

    .bio-description {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .bio-signature-wrapper {
        display: flex;
        justify-content: center;
    }

    /* Seção de Garantia */
    .warranty-box {
        flex-direction: column;
        text-align: center;
        padding: 35px 20px;
        gap: 25px;
    }

    .warranty-badge-wrapper {
        margin: 0 auto;
    }

    .warranty-3d-badge {
        max-width: 130px;
        height: auto;
    }

    .warranty-text-block {
        text-align: center;
    }

    .warranty-title {
        font-size: 1.6rem;
    }

    .warranty-desc {
        font-size: 0.95rem;
    }

    /* Seção da Oferta & Contador */
    .offer-section {
        padding: 50px 16px 70px !important;
    }

    .offer-box {
        padding: 35px 18px;
    }

    .offer-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .price-old {
        font-size: 1rem;
    }

    .price-new {
        font-size: 2.3rem;
    }

    .price-installments {
        font-size: 1.2rem;
    }

    .advantages-title {
        font-size: 1rem;
    }

    .advantages-list li {
        font-size: 0.9rem;
    }

    .countdown-box {
        padding: 20px 10px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        min-width: 65px;
        padding: 10px 5px;
    }

    .countdown-num {
        font-size: 1.6rem;
    }

    .countdown-lbl {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .countdown-timer {
        gap: 6px;
    }

    .countdown-item {
        min-width: 58px;
        padding: 8px 4px;
    }

    .countdown-num {
        font-size: 1.4rem;
    }
}

/* ====================================================
   Customizações para Computador (Depoimentos)
   ==================================================== */
@media (min-width: 992px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 780px; /* Limita a largura da grid para aproximar os depoimentos no computador */
        margin: 40px auto 0; /* Centraliza a grid */
    }
    
    .testimonial-card.video-1 {
        order: 1;
    }
    
    .testimonial-card.video-2 {
        order: 2;
    }
    
    .testimonial-card.print-1 {
        order: 3;
    }
    
    .testimonial-card.print-2 {
        order: 4;
    }
    
    /* Vídeos maiores no computador */
    .testimonial-card.testimonial-video-card {
        max-width: 360px; /* Largura maior para os vídeos no computador */
        width: 100%;
        margin: 0 auto;
    }
    
    /* Print na metade do tamanho no computador */
    .testimonial-card.testimonial-img-card {
        max-width: 290px; /* Metade do tamanho padrão no computador */
        width: 100%;
        margin: 0 auto;
    }
}

