/* ===== CSS PRINCIPAL - AURORA PINK (TEMA CLARO FEMININO) ===== */

/* Reset e Variáveis - Paleta Feminina Sofisticada */
:root {
    /* Cores Principais Femininas */
    --soft-blush: #F8F1F0;
    --cashmere-beige: #F5F0EB;
    --pearl-white: #FFFFFF;
    --dusty-rose: #C97B87;
    --dusty-rose-dark: #A85B69;
    --mauve-taupe: #7A5863;
    --lavender-grey: #8C7D94;
    --soft-sage: #9BAF9B;
    
    /* Cores de Texto - Alto Contraste */
    --text-dark: #2A1E23;
    --text-medium: #4A3A40;
    --text-light: #6A5A60;
    --text-muted: #8A7A80;
    --text-accent: #B76E79;
    
    /* Cores de Destaque */
    --success: #8BC2A0;
    --warning: #E6B87E;
    --danger: #D17F8E;
    --luxury-gold: #D4B483;
    
    /* Cores de Fundo */
    --bg-light: #FDFAF9;
    --bg-medium: #FAF5F3;
    --bg-dark: #F0E6E3;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(201, 123, 135, 0.15);
    --glass-shadow: 0 8px 32px rgba(122, 88, 99, 0.08);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--soft-blush) 0%, var(--cashmere-beige) 100%);
    --gradient-accent: linear-gradient(135deg, var(--dusty-rose) 0%, var(--dusty-rose-dark) 100%);
    --gradient-luxury: linear-gradient(135deg, var(--luxury-gold) 0%, #E8C9A5 100%);
    
    /* Transições */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-primary);
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
}

h3 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-medium);
}

/* Utility Classes */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--dusty-rose);
    font-weight: 700;
}

.perfume-highlight {
    color: var(--luxury-gold);
    font-weight: 700;
}

/* Background Effects - Versão Clara */
.bg-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 123, 135, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 175, 155, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 50%, rgba(212, 180, 131, 0.05) 0%, transparent 50%),
        var(--gradient-primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Section Spacing */
section {
    padding: 80px 0;
    position: relative;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 180, 131, 0.2);
    border: 1px solid var(--luxury-gold);
    color: var(--mauve-taupe);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.hero-title {
    margin-bottom: 24px;
    color: var(--mauve-taupe);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-medium);
    margin-top: 10px;
}

.hero-subtitle .highlight {
    color: var(--dusty-rose);
    font-weight: 900;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* === CORREÇÃO 1: VÍDEO NO CELULAR === */
/* Vídeo centralizado e responsivo */
.hero-video {
    max-width: 900px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 40px rgba(122, 88, 99, 0.15);
    width: 100%;
    max-width: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Em celular, ajustar para conter o vídeo inteiro sem cortar */
@media (max-width: 768px) {
    .video-wrapper video {
        object-fit: contain;
        background: var(--gradient-primary);
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 30, 35, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-overlay:hover {
    background: rgba(42, 30, 35, 0.3);
}

/* Remover overlay cinza em mobile */
@media (max-width: 768px) {
    .video-overlay {
        background: transparent !important;
    }
    
    .video-overlay:hover {
        background: transparent !important;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button i {
        font-size: 1.8rem;
    }
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(168, 91, 105, 0.3);
    position: relative;
    z-index: 10;
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(168, 91, 105, 0.4);
}

.video-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Esconder texto do overlay em mobile */
@media (max-width: 768px) {
    .video-overlay p {
        display: none;
    }
}

/* Trust Seals */
.trust-seals {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.seal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-medium);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.seal-item:hover {
    background: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 88, 99, 0.1);
}

.seal-item i {
    color: var(--soft-sage);
}

/* CTA */
.hero-cta {
    margin-bottom: 30px;
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

.cta-note i {
    color: var(--dusty-rose);
    margin-right: 5px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 20px;
    color: var(--mauve-taupe);
}

.section-subtitle {
    color: var(--text-medium);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.tech-card {
    padding: 40px 30px;
    text-align: center;
    word-wrap: break-word;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.tech-icon i {
    font-size: 2.5rem;
    color: white;
}

.tech-card h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.tech-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.tech-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--dusty-rose);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Testimonials */
.testimonials-slider {
    margin: 50px 0;
}

.testimonial-card {
    padding: 30px;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dusty-rose);
}

.testimonial-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--luxury-gold);
    font-size: 0.9rem;
}

.testimonial-rating span {
    color: var(--text-dark);
    font-weight: 700;
    margin-left: 5px;
}

.testimonial-text {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.stat-value.good {
    color: var(--success);
}

.stat-value.bad {
    color: var(--danger);
}

.testimonial-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-medium);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.testimonial-progress span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
}

/* === CORREÇÃO 2: MENSAGENS DE COMPRAS NO CELULAR === */
/* Live Purchases otimizado para mobile */
.live-purchases {
    margin-top: 60px;
}

.live-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: clamp(1.3rem, 4vw, 1.5rem);
}

.live-title i {
    color: var(--dusty-rose);
}

.purchases-feed {
    background: var(--bg-medium);
    border-radius: 15px;
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--glass-border);
}

.purchase-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-bottom: 1px solid var(--glass-border);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.purchase-item:last-child {
    border-bottom: none;
}

.purchase-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dusty-rose);
    flex-shrink: 0;
}

.purchase-info {
    flex: 1;
    min-width: 0; /* Permite que o texto quebre */
}

.purchase-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.purchase-details {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.purchase-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    padding: 40px 30px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.pricing-card.popular {
    border: 2px solid var(--luxury-gold);
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-luxury);
    color: var(--text-dark);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(212, 180, 131, 0.3);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-savings {
    margin-bottom: 15px;
}

.savings-badge {
    display: inline-block;
    background: var(--success);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.pricing-title {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.pricing-price {
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-dark);
    vertical-align: top;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: var(--text-dark);
    line-height: 1;
}

.price-decimal {
    font-size: 1.5rem;
    color: var(--text-dark);
    vertical-align: top;
}

.pricing-compare {
    margin-bottom: 15px;
}

.compare-price {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 10px;
}

.discount {
    color: var(--success);
    font-weight: 700;
}

.pricing-description {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: 30px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-medium);
}

.feature-item i {
    color: var(--success);
    min-width: 20px;
}

.feature-item.bonus i {
    color: var(--luxury-gold);
}

.feature-item.bonus {
    color: var(--luxury-gold);
    font-weight: 600;
}

/* Button CTA - Atualizado para tema claro */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-accent);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(168, 91, 105, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dusty-rose-dark) 0%, var(--mauve-taupe) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(168, 91, 105, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:active {
    transform: translateY(-1px);
}

.btn-pulse {
    animation: pulseCta 2s infinite;
}

@keyframes pulseCta {
    0% {
        box-shadow: 0 10px 30px rgba(168, 91, 105, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(168, 91, 105, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.2),
                    0 0 30px rgba(168, 91, 105, 0.3);
    }
    100% {
        box-shadow: 0 10px 30px rgba(168, 91, 105, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
    }
}

.pricing-card .btn-cta {
    width: 100%;
    margin-bottom: 20px;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i {
    color: var(--soft-sage);
}

/* Guarantee Box */
.guarantee-box {
    padding: 40px;
    margin-top: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 3rem;
    color: var(--luxury-gold);
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.guarantee-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.guarantee-badge {
    flex-shrink: 0;
    background: var(--gradient-accent);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-align: center;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-medium);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--dusty-rose);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-tagline {
    color: var(--text-medium);
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--dusty-rose);
}

.footer-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* === CORREÇÃO 3: BOTÃO FIXO NO IPHONE 11 === */
/* Sticky CTA Mobile otimizado */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    background: rgba(253, 250, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    z-index: 9999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -5px 25px rgba(122, 88, 99, 0.1);
}

.sticky-cta-mobile.show {
    transform: translateY(0);
}

.sticky-cta-mobile .btn-cta {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-size: clamp(14px, 3.5vw, 16px);
    white-space: nowrap;
    overflow: hidden;
    min-height: 52px;
}

/* Conteúdo do botão sticky sem quebra de linha */
.sticky-cta-mobile .btn-cta > * {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Texto principal sem quebra */
.sticky-cta-mobile .btn-cta i.fa-gem {
    margin-right: 8px;
}

.sticky-cta-mobile .btn-cta span:not(.sticky-price) {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.sticky-price {
    background: rgba(168, 91, 105, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: clamp(14px, 3.5vw, 16px);
    color: var(--text-dark);
    flex-shrink: 0;
    margin-left: 10px;
}

/* Purchase Notification otimizada para mobile */
.purchase-notification {
    position: fixed;
    top: 50px;
    right: 20px;
    background: rgba(253, 250, 249, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 12px 15px;
    max-width: 300px;
    z-index: 10000;
    display: none;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 10px 30px rgba(122, 88, 99, 0.15);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dusty-rose);
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    min-width: 0; /* Permite quebra de texto */
}

.notification-text strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 3px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-text span {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
}

/* Responsive Design - Correções aprimoradas */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .tech-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .trust-seals {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .sticky-cta-mobile {
        display: block;
    }
    
    .footer-content {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-tagline {
        margin: 0 auto;
    }
    
   .hero-video {
        max-width: 100%;
        margin: 0 auto 30px;
        padding: 0 10px;
    }
    
    .video-wrapper {
        width: 100%;
        margin: 0;
        border-radius: 15px;
        aspect-ratio: 16/9;
    }
    
    /* Ajustar o alinhamento do vídeo para o topo */
    .video-wrapper video {
        object-position: top;
        width: 100%;
        height: 100%;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .video-overlay p {
        font-size: 0.85rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .video-overlay {
        border-radius: 15px;
    }
    
    /* Notificações otimizadas */
    .purchase-notification {
        top: clamp(20px, 5%, 40px);
        right: clamp(10px, 3%, 20px);
        left: clamp(10px, 3%, 20px);
        max-width: clamp(200px, 90vw, 300px);
        padding: clamp(10px, 2vw, 12px) clamp(12px, 2vw, 15px);
    }
    
    .notification-content {
        gap: clamp(8px, 1.5vw, 12px);
    }
    
    .notification-avatar {
        width: clamp(28px, 6vw, 35px);
        height: clamp(28px, 6vw, 35px);
    }
    
    .notification-text strong {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
    }
    
    .notification-text span {
        font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    }
    
    .purchases-feed {
        max-height: 250px;
    }
    
    .purchase-item {
        padding: 10px 8px;
        gap: 10px;
    }
    
    .purchase-avatar {
        width: 32px;
        height: 32px;
    }
    
    .purchase-name {
        font-size: 0.85rem;
    }
    
    .purchase-details {
        font-size: 0.75rem;
    }
}

/* ===== MEDIA QUERIES ADICIONAIS PARA RESPONSIVIDADE MOBILE ===== */

/* Telas extra pequenas - 320px a 360px */
@media (max-width: 360px) {
    .hero-video {
        margin: 0 auto 20px;
        padding: 0 5px;
    }
    
    .video-wrapper {
        border-radius: 12px;
        aspect-ratio: 16/9;
    }
    
    .video-overlay p {
        font-size: 0.75rem;
        padding: 0 10px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-button i {
        font-size: 1rem;
    }
}

/* Telas pequenas - 361px a 480px */
@media (max-width: 480px) {
    .hero-video {
        margin: 0 auto 25px;
        padding: 0 8px;
    }
    
    .video-wrapper {
        border-radius: 12px;
        aspect-ratio: 16/9;
    }
    
    .video-overlay p {
        font-size: 0.8rem;
        padding: 0 12px;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
    }
    
    .play-button i {
        font-size: 1.1rem;
    }
}

/* Tablets pequenos - 481px a 768px */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-video {
        margin: 0 auto 35px;
        padding: 0 12px;
    }
    
    .video-wrapper {
        border-radius: 16px;
        aspect-ratio: 16/9;
    }
    
    .video-overlay p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .play-button {
        width: 55px;
        height: 55px;
    }
    
    .play-button i {
        font-size: 1.3rem;
    }
}

/* ===== FIM MEDIA QUERIES RESPONSIVIDADE MOBILE ===== */

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-label, .stat-value {
        display: inline-block;
        margin: 0;
    }
    
    /* Ajustes finos para iPhone 11 (414px) e menores */
    .sticky-cta-mobile .btn-cta {
        padding: 12px 15px;
        font-size: 13px;
        min-height: 48px;
    }
    
    .sticky-price {
        padding: 5px 10px;
        font-size: 13px;
        margin-left: 8px;
    }
    
    /* Ajuste específico para iPhone 11 (414px) */
    @media (max-width: 414px) {
        .sticky-cta-mobile .btn-cta {
            font-size: 12px;
        }
        
        .sticky-cta-mobile .btn-cta span:not(.sticky-price) {
            padding: 0 3px;
        }
        
        .sticky-cta-mobile .btn-cta i.fa-gem {
            margin-right: 5px;
        }
    }
    
    /* Ajuste para telas muito pequenas */
    @media (max-width: 360px) {
        .sticky-cta-mobile .btn-cta i.fa-gem {
            display: none; /* Remove ícone em telas muito pequenas */
        }
        
        .sticky-cta-mobile .btn-cta {
            font-size: 11px;
        }
        
        .sticky-price {
            font-size: 11px;
            padding: 4px 8px;
        }
    }
}

/* Ajuste específico para iPhone 11 (414x896) */
@media only screen 
    and (device-width: 414px) 
    and (device-height: 896px) 
    and (-webkit-device-pixel-ratio: 2) {
    
    .sticky-cta-mobile .btn-cta {
        font-size: 14px;
        padding: 14px 18px;
    }
    
    .sticky-price {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Print Styles */
@media print {
    .urgency-bar,
    .sticky-cta-mobile,
    .btn-cta,
    .video-overlay,
    .splide__arrows,
    .splide__pagination {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: var(--text-dark) !important;
    }
    
    .glass-card {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .gradient-text {
        background: none !important;
        -webkit-text-fill-color: var(--text-dark) !important;
        color: var(--text-dark) !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== EFEITO 3D PREMIUM PARA KIT MAIS VENDIDO (TEMA CLARO) ===== */
.pricing-card.popular {
    position: relative;
    transform: scale(1.05) perspective(1000px);
    transform-style: preserve-3d;
    z-index: 2;
    border: none !important;
    overflow: visible !important;
    animation: float3d 6s ease-in-out infinite;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(201, 123, 135, 0.08) 50%,
        rgba(212, 180, 131, 0.1) 100%
    ) !important;
}

/* Flutuação 3D */
@keyframes float3d {
    0%, 100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05) translateY(0);
        box-shadow: 
            0 30px 60px rgba(122, 88, 99, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.8),
            0 0 60px rgba(168, 91, 105, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            0 0 100px rgba(212, 180, 131, 0.15);
    }
    33% {
        transform: perspective(1000px) rotateX(1deg) rotateY(1deg) scale(1.05) translateY(-10px);
        box-shadow: 
            0 40px 80px rgba(122, 88, 99, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.9),
            0 0 80px rgba(168, 91, 105, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.95),
            0 0 120px rgba(212, 180, 131, 0.2);
    }
    66% {
        transform: perspective(1000px) rotateX(-1deg) rotateY(-1deg) scale(1.05) translateY(-5px);
        box-shadow: 
            0 35px 70px rgba(122, 88, 99, 0.18),
            0 0 0 1px rgba(255, 255, 255, 0.85),
            0 0 70px rgba(168, 91, 105, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            0 0 110px rgba(212, 180, 131, 0.18);
    }
}

/* Badge 3D Corrigida (não cortada) */
.popular-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%) translateZ(20px);
    background: var(--gradient-luxury);
    background-size: 200% 200%;
    color: var(--text-dark);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 
        0 10px 30px rgba(212, 180, 131, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 0 2px rgba(212, 180, 131, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    z-index: 10;
    animation: badgeGlow 3s ease-in-out infinite, badgeFloat 4s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    min-width: max-content;
}

/* Brilho do Badge */
@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(212, 180, 131, 0.4),
            0 5px 15px rgba(0, 0, 0, 0.1),
            0 0 0 2px rgba(212, 180, 131, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 
            0 15px 40px rgba(212, 180, 131, 0.6),
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 0 0 3px rgba(212, 180, 131, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.9),
            0 0 30px rgba(212, 180, 131, 0.3);
    }
}

/* Flutuação do Badge */
@keyframes badgeFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0) translateZ(20px);
    }
    50% {
        transform: translateX(-50%) translateY(-5px) translateZ(25px);
    }
}

/* Borda 3D Sutil */
.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        var(--luxury-gold),
        var(--dusty-rose),
        var(--soft-sage),
        var(--luxury-gold)
    );
    border-radius: 26px;
    z-index: -1;
    animation: borderRotate 8s linear infinite;
    filter: blur(3px);
    opacity: 0.4;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Efeito de profundidade interna */
.pricing-card.popular::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    border-radius: 22px;
    z-index: 1;
    pointer-events: none;
}

/* Iluminação dinâmica suave */
.popular-light {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(
        circle,
        rgba(168, 91, 105, 0.2) 0%,
        rgba(212, 180, 131, 0.1) 30%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(15px);
    animation: lightMove 10s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes lightMove {
    0%, 100% {
        top: 20%;
        left: 20%;
        transform: scale(1);
    }
    33% {
        top: 60%;
        left: 70%;
        transform: scale(1.2);
    }
    66% {
        top: 40%;
        left: 40%;
        transform: scale(0.8);
    }
}

/* Sombra projetada 3D */
.pricing-card.popular .shadow-3d {
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 40px;
    background: radial-gradient(
        ellipse at center,
        rgba(122, 88, 99, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(8px);
    z-index: 1;
    animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Texto em relevo */
.pricing-card.popular .pricing-title {
    position: relative;
    display: inline-block;
    color: var(--mauve-taupe);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(168, 91, 105, 0.2),
        0 0 40px rgba(168, 91, 105, 0.1);
    transform: translateZ(10px);
}

/* Preço em destaque 3D */
.pricing-card.popular .pricing-price {
    position: relative;
    transform: translateZ(15px);
}

.pricing-card.popular .price-value {
    background: linear-gradient(135deg, var(--mauve-taupe) 0%, var(--dusty-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Botão 3D */
.pricing-card.popular .btn-cta {
    position: relative;
    transform: translateZ(20px);
    background: linear-gradient(
        135deg,
        var(--dusty-rose) 0%,
        var(--mauve-taupe) 30%,
        var(--dusty-rose) 70%,
        var(--mauve-taupe) 100%
    );
    background-size: 200% 200%;
    animation: buttonShine 4s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 35px rgba(168, 91, 105, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes buttonShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Para garantir que o conteúdo não seja cortado */
.pricing-card.popular .pricing-header {
    padding-top: 40px; /* Espaço extra para a badge */
}

/* Efeito de partículas no cartão */
.popular-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1.02) perspective(800px);
        animation: float3dMobile 6s ease-in-out infinite;
    }
    
    @keyframes float3dMobile {
        0%, 100% {
            transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1.02) translateY(0);
        }
        33% {
            transform: perspective(800px) rotateX(0.5deg) rotateY(0.5deg) scale(1.02) translateY(-5px);
        }
        66% {
            transform: perspective(800px) rotateX(-0.5deg) rotateY(-0.5deg) scale(1.02) translateY(-3px);
        }
    }
    
    .popular-badge {
        top: -20px;
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ===== URGENCY BAR MELHORADA (TEMA CLARO) ===== */
.urgency-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, 
        var(--dusty-rose) 0%, 
        var(--dusty-rose-dark) 25%,
        var(--mauve-taupe) 75%,
        var(--soft-sage) 100%);
    padding: 15px 0;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 25px rgba(122, 88, 99, 0.15);
    animation: pulseBar 2s infinite;
    backdrop-filter: blur(10px);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Relógio e contador destacados */
.urgency-bar .fa-clock {
    color: #FFFFFF;
    font-size: 1.3em;
    animation: clockSpin 4s linear infinite;
}

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

/* Contador com destaque máximo */
#countdown {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8em;
    color: #FFFFFF;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.7),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 45px rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: countdownPulse 1.5s infinite alternate,
               countdownGlow 2s infinite alternate;
    min-width: 100px;
    display: inline-block;
    letter-spacing: 2px;
}

/* Pulsação do contador */
@keyframes countdownPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

/* Brilho do contador */
@keyframes countdownGlow {
    0% {
        border-color: rgba(255, 255, 255, 0.4);
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.7),
            0 0 30px rgba(255, 255, 255, 0.4);
    }
    100% {
        border-color: rgba(255, 255, 255, 0.6);
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.9),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 60px rgba(255, 255, 255, 0.3);
    }
}

/* Unidades restantes destacadas */
#units-left {
    font-size: 1.5em;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 10px;
    border-radius: 8px;
    animation: unitsPulse 2s infinite;
}

@keyframes unitsPulse {
    0%, 100% {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        background: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
    }
}

/* Responsividade do contador */
@media (max-width: 768px) {
    .urgency-bar {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .urgency-content {
        gap: 10px;
    }
    
    #countdown {
        font-size: 1.5em;
        min-width: 80px;
        padding: 3px 10px;
    }
    
    #units-left {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .urgency-bar {
        font-size: 12px;
    }
    
    #countdown {
        font-size: 1.3em;
        min-width: 70px;
    }
    
    .urgency-content span {
        display: block;
        margin: 2px 0;
    }
}