/* ==========================================================================
   SISTEMA DE DESIGN & ESTILOS PREMIUM — ALÉM DA MENTE
   ========================================================================== */

/* Reset & Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores */
    --bg-color: #050505;
    --text-color: #EAE6DF;
    --text-muted: #9F9B96;
    --accent-color: #C5A880; /* Bronze Metálico */
    --accent-glow: rgba(197, 168, 128, 0.15);
    --white: #FFFFFF;
    --card-bg: rgba(18, 18, 18, 0.6);
    --border-color: rgba(255, 255, 255, 0.06);
    
    /* Tipografia */
    --font-serif: 'Lora', Georgia, serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-serif);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}

/* Layout Geral */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 680px;
}

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

/* Header */
.header {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px 0;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.7;
}

/* Box do Teste Interativo (Glassmorphism) */
.test-container {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 50px auto; /* Centrar horizontalmente no desktop */
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 32px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.test-state {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    flex-direction: column;
    align-items: center;
}

.test-state.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.test-intro-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 28px;
    font-weight: 300;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #111;
    box-shadow: 0 4px 20px var(--accent-glow);
    animation: btnPulse 2.5s ease-in-out infinite;
}

.btn-primary:hover {
    animation-play-state: paused;
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 12px 35px rgba(197, 168, 128, 0.5);
    background-color: #D6BD96;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.05rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.btn-glow {
    box-shadow: 0 0 30px var(--accent-glow);
    animation: btnPulse 3s infinite alternate;
}

/* Estados do Timer */
.focus-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 0 15px var(--accent-color);
    animation: dotPulse 2s infinite alternate;
}

.countdown-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    animation: circleRotate 30s linear infinite;
}

.timer-seconds {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    animation: counterAntiRotate 30s linear infinite; /* Para manter os segundos retos enquanto o círculo gira */
}

.test-instruction {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Estado de Resultado */
.result-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 12px;
}

.result-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 460px;
}

.result-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.result-buttons .btn {
    flex: 1;
    max-width: 200px;
}

/* Seção 2: Diagnóstico */
.diagnosis-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.lead-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.35;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
}

.text-block p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 28px;
    font-weight: 300;
    text-align: justify;
}

.highlight-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--accent-color);
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
    margin: 40px 0;
}

/* Seção 3: O Livro (Grid) */
.book-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.book-image-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.book-cover-img {
    width: 100%;
    max-width: 320px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: var(--transition-smooth);
}

.book-cover-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(197, 168, 128, 0.15);
}

.book-content {
    display: flex;
    flex-direction: column;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.book-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.features-list .icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 4px;
}

.features-list li strong {
    color: var(--white);
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
}

.features-list li div {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Seção 4: A Oferta */
.offer-section {
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
    background-color: #080808;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-weight: 300;
}

.price-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.price-current {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4rem);
    color: var(--white);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 12px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

/* Garantia */
.guarantee-box {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    font-size: 2.2rem;
    line-height: 1;
}

.guarantee-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* Seção 5: Autor */
.author-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.author-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
}

.author-bio {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    background-color: #030303;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.copyright {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Animações Keyframes */
@keyframes dotPulse {
    from {
        transform: scale(1);
        box-shadow: 0 0 10px var(--accent-color);
    }
    to {
        transform: scale(1.3);
        box-shadow: 0 0 25px var(--accent-color);
    }
}

@keyframes circleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes counterAntiRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px var(--accent-glow);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 32px rgba(197, 168, 128, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px var(--accent-glow);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .book-image-container {
        order: -1; /* Capa vem primeiro no celular */
    }
    
    .book-cover-img {
        max-width: 250px;
    }
    
    .test-container {
        padding: 30px 20px;
    }
    
    .result-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .result-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .guarantee-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.author-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px auto;
    border: 3px solid rgba(197, 168, 128, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: block;
}

.author-img:hover {
    transform: scale(1.06);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px rgba(197, 168, 128, 0.5), 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* VSL Video Section */
.vsl-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspect Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(197, 168, 128, 0.05);
    background-color: #000;
    transition: var(--transition-smooth);
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(197, 168, 128, 0.15);
    border-color: rgba(197, 168, 128, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vsl-promise-text {
    font-size: 1.15rem;
    color: var(--text-color);
    margin: 24px auto 28px auto;
    max-width: 680px;
    line-height: 1.6;
    font-weight: 300;
}

.btn-vsl-cta {
    display: inline-block;
    width: auto;
    min-width: 280px;
}

/* Seção de Depoimentos */
.social-proof-section {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 60px auto;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
}

.proof-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.proof-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    text-align: left;
}

.proof-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.proof-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 168, 128, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-glow);
}

.proof-image-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    filter: grayscale(10%) contrast(95%);
    transition: var(--transition-smooth);
}

.proof-card:hover .proof-img {
    opacity: 1;
    filter: none;
    transform: scale(1.02);
}

.proof-text {
    font-size: 0.95rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.6;
    margin-top: auto;
}

.proof-text cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-style: normal;
    color: var(--accent-color);
    margin-top: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Slider de Páginas do Livro */
.book-slider-container {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book-slider {
    width: 100%;
    height: 520px;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    overflow: hidden;
    background-color: #0c0c0c;
}

.book-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Estilo Simulação de Página de Papel */
.book-page-content {
    width: 100%;
    height: 100%;
    background-color: #FAF7F0; /* Cor Papel Crema */
    background-image: radial-gradient(rgba(0,0,0,0.01) 1px, transparent 0), radial-gradient(rgba(0,0,0,0.01) 1px, transparent 0);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
    padding: 36px 28px;
    color: #2A2725; /* Texto Cinza Muito Escuro */
    font-family: var(--font-serif);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.page-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    font-size: 0.88rem;
    line-height: 1.55;
    text-align: justify;
}

/* Ocultar scrollbar interna da página do livro */
.page-inner::-webkit-scrollbar {
    width: 3px;
}
.page-inner::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.page-inner p {
    margin-bottom: 16px;
    text-indent: 1.5em; /* Recuo de parágrafo clássico */
}

.page-inner p.paragraph-first {
    text-indent: 0; /* Primeiro parágrafo sem recuo */
}

/* Página de Dedicatória */
.dedicatory-page {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.dedicatory-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4A4744;
    text-indent: 0 !important;
}

/* Cabeçalhos internos das páginas */
.page-chapter-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #8C8680;
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.page-chapter-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1A1715;
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 16px;
}

/* Controles do Slider */
.slider-controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.slider-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 8px 12px;
}

.slider-btn:hover {
    color: var(--accent-color);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.3);
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .book-slider {
        height: 440px;
    }
}

/* Duas Opções de Compra Grid */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px auto;
    max-width: 900px;
    align-items: stretch;
}

.premium-card {
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.premium-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(197, 168, 128, 0.25);
}

.card-badge {
    position: absolute;
    top: -12px;
    background-color: #222;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.gold-badge {
    background-color: var(--accent-color);
    color: #111;
    border: none;
    font-weight: 600;
}

.card-format {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
}

.format-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 300;
    min-height: 50px; /* Alinhar textos */
}

.btn-full {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-gold-card {
    background-color: var(--accent-color);
    color: #111;
}

.btn-gold-card:hover {
    background-color: #D6BD96;
}

/* Ajustes Responsivos */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 450px;
    }
}

/* Delay de Conteúdo */
.vsl-cta-wrapper.hidden {
    display: none !important;
}

.delayed-content {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.delayed-content.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Dica de Rotação Mobile */
.mobile-tip {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px auto;
    font-size: 0.82rem;
    color: var(--accent-color); /* Dourado */
    font-weight: 400;
    text-align: center;
    background: rgba(197, 168, 128, 0.06);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(197, 168, 128, 0.12);
    max-width: max-content;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .mobile-tip {
        display: inline-flex;
    }
}

/* Animação do Botão Play Pulsante */
@keyframes pulsePlay {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(197, 168, 128, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 10px 35px rgba(197, 168, 128, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(197, 168, 128, 0.4);
    }
}

.play-overlay:hover .play-button-icon {
    transform: scale(1.1);
    background: #E8D7BE !important; /* Dourado mais claro no hover */
}

/* Cronômetro de Urgência */
.urgency-timer-container {
    margin: 25px auto 40px auto;
    max-width: max-content;
    padding: 16px 30px;
    background: rgba(197, 168, 128, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.timer-badge {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-color); /* Gold */
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-unit span {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.timer-unit small {
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-top: -12px;
}
