:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary-color: #1e293b;
    --accent-color: #00D4FF;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --gradient-1: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --gradient-2: linear-gradient(135deg, #0052CC 0%, #0066FF 100%);
    --gradient-3: linear-gradient(135deg, #00D4FF 0%, #0099FF 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgency Bar - REMOVIDA */
.urgency-bar {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 0.6rem 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.urgency-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.urgency-icon {
    font-size: 1.2rem;
}

.urgency-text strong {
    font-weight: 700;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--primary-color);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-2);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FDB44B 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
    position: relative;
    z-index: 10;
}

/* DESKTOP: Layout original - 2 colunas lado a lado */
@media (min-width: 769px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-text {
        grid-column: 1;
        padding-top: 0 !important; /* Remove padding mobile */
    }
    
    .hero-image-desktop {
        display: block;
        grid-column: 2;
        padding-bottom: initial !important;
        margin-bottom: initial !important;
    }
    
    .hero-image-mobile {
        display: none !important; /* Esconde imagem mobile no desktop */
    }
    
    .hero-description-premium {
        margin-bottom: 1.5rem !important; /* Restaura margin normal */
    }
}

.hero-text h1,
.hero-text p,
.hero-text span {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight {
    color: white;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
    z-index: -1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1;
    line-height: 1.8;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-feature svg {
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.9;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.trust-signal span {
    color: #ffffff !important;
}

.trust-signal svg {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    stroke: #ffffff !important;
}

/* Payment Methods */
.payment-methods {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #00C9A7 0%, #00B894 100%);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 201, 167, 0.3);
}

.payment-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.pix-highlight {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
}

.pix-icon-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.pix-info {
    flex: 1;
}

.pix-text {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.pix-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.pix-payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00C9A7 0%, #00B894 100%);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 201, 167, 0.3);
}

.pix-icon-small {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-image {
    position: relative;
}


/* Improved Product Showcase */
.product-showcase-improved {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.product-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes glow-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.product-image-improved {
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    padding: 3rem;
    animation: float-smooth 4s ease-in-out infinite;
}

@keyframes float-smooth {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.main-product-img-improved {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.main-product-img-improved:hover {
    transform: scale(1.05);
}

.spec-badges {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.spec-badge {
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 102, 255, 0.2);
    animation: badge-float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.spec-badge:hover {
    transform: translateX(-10px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.3);
    border-color: var(--primary-color);
}

.spec-badge:nth-child(1) {
    animation-delay: 0s;
}

.spec-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.spec-badge:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.spec-badge-icon {
    font-size: 1.8rem;
}

.spec-badge-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* Product Gallery */
.product-gallery {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    background: white;
    height: 200px;
}

.gallery-item.main-gallery {
    height: auto;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2;
}

.gallery-label {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.main-gallery {
    grid-column: span 3;
    grid-row: span 1;
    height: 400px;
}

.main-gallery img {
    object-fit: contain;
    background: white;
    padding: 2rem;
}

.main-gallery .gallery-label {
    font-size: 1.2rem;
}

.gallery-item:not(.main-gallery) img {
    height: 100%;
    object-fit: cover;
}

/* Social Proof */
.social-proof {
    background: var(--bg-light);
    padding: 3rem 0;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Specifications Section */
.specifications {
    padding: 6rem 0;
    background: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.spec-card {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.spec-card:hover::before {
    left: 100%;
}

.spec-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--bg-light);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image {
    position: relative;
    height: 500px;
}

.benefits-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.benefits-card.floating {
    animation: floating 4s ease-in-out infinite;
}

.benefits-card:nth-child(1) {
    top: 10%;
    left: 10%;
}

.benefits-card:nth-child(2) {
    top: 45%;
    right: 5%;
}

.benefits-card:nth-child(3) {
    bottom: 15%;
    left: 15%;
}

.benefit-icon-small {
    font-size: 2rem;
}

.benefit-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.benefit-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.benefits-text {
    padding: 2rem 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    display: none;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF6B35;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.author-name {
    font-weight: 700;
    color: var(--secondary-color);
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Guarantee */
.guarantee {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.guarantee h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.guarantee-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    font-size: 1.1rem;
    line-height: 2;
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-color);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-box {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.price-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.price-current {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.price-installment {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

.cta-benefit svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.security-badge {
    font-size: 0.9rem;
    color: var(--text-light);
}

.urgency-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 10px;
    color: #92400e;
    font-weight: 600;
}

#countdown {
    color: #b91c1c;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .benefits-content {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .container {
        padding: 0 20px; /* Mais espaço nas laterais */
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* MOBILE: Layout personalizado */
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    
    .hero-text {
        padding-top: 53px !important;
        text-align: center;
    }
    
    .hero-image-mobile {
        display: block !important; /* Mostra imagem mobile */
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-desktop {
        display: none !important; /* Esconde imagem desktop no mobile */
    }
    
    .hero-description-premium {
        margin-bottom: 0 !important;
    }
    
    /* Imagem otimizada */
    .hero-image .product-showcase-premium {
        padding: 0.5rem;
        transform: scale(0.95); /* Sutilmente menor */
    }
    
    .hero-image .main-product-img-premium {
        max-width: 100%;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    }
    
    /* Trust badges compactos e profissionais */
    .hero-image .floating-trust-badges {
        display: none; /* Remove no mobile para limpeza */
    }
    
    /* Badge oferta relâmpago */
    .badge-premium {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    /* Título otimizado */
    .hero-title-premium {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    /* Subtítulo */
    .hero-subtitle-premium {
        font-size: 1rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }
    
    /* Descrição compacta */
    .hero-description-premium {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        opacity: 0.85;
    }
    
    /* Features em grid 2x2 */
    .hero-features-premium {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-quick {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    /* Trust signals compactos */
    .trust-signals {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .trust-signal {
        flex-direction: column;
        text-align: center;
        padding: 0.6rem 0.3rem;
    }
    
    .trust-signal svg {
        width: 16px;
        height: 16px;
        margin-bottom: 0.2rem;
    }
    
    .trust-signal span {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-features {
        gap: 0.8rem;
    }

    .hero-feature {
        font-size: 0.9rem;
    }

    .price-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem;
    }

    .old-price {
        font-size: 1rem;
    }

    .current-price {
        font-size: 2.2rem;
    }

    .trust-signals {
        flex-direction: column;
        gap: 0.8rem;
    }

    .trust-signal {
        width: 100%;
        justify-content: flex-start;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .product-showcase-improved {
        min-height: 400px;
    }

    .product-image-improved {
        padding: 2rem;
    }

    .main-product-img-improved {
        max-width: 350px;
    }

    .spec-badges {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .spec-badge {
        padding: 0.6rem 1rem;
    }

    .spec-badge-icon {
        font-size: 1.3rem;
    }

    .spec-badge-text {
        font-size: 0.9rem;
    }

    .product-glow {
        width: 300px;
        height: 300px;
    }

    .gallery-header {
        margin-bottom: 2rem;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-subtitle {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .main-gallery {
        grid-column: span 2;
        grid-row: span 1;
    }

    .product-gallery {
        padding: 3rem 0;
    }

    .gallery-label {
        font-size: 0.85rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .spec-card {
        padding: 1.5rem;
    }

    .spec-icon {
        font-size: 2.5rem;
    }

    .specifications {
        padding: 4rem 0;
    }

    .benefits {
        padding: 4rem 0;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-image {
        order: 2;
        height: 350px;
        display: none;
    }

    .benefits-text {
        padding: 0;
    }

    .benefits-list {
        gap: 1.5rem;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .guarantee {
        padding: 3rem 0;
    }

    .guarantee h2 {
        font-size: 2rem;
    }

    .guarantee p {
        font-size: 1rem;
    }

    .faq {
        padding: 4rem 0;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .price-box .price-current {
        font-size: 2.5rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .navbar {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .container {
        padding: 0 15px; /* Compacto mas não apertado */
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* MOBILE PEQUENO: Layout personalizado */
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    
    .hero-text {
        padding-top: 53px !important;
        text-align: center;
    }
    
    .hero-image-mobile {
        display: block !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-desktop {
        display: none !important;
    }
    
    .hero-description-premium {
        margin-bottom: 0 !important;
    }
    
    /* Imagem super compacta */
    .hero-image .product-showcase-premium {
        padding: 0.3rem;
        transform: scale(0.9);
    }
    
    .hero-image .main-product-img-premium {
        max-width: 100%;
        filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
    }
    
    /* Remove trust badges */
    .hero-image .floating-trust-badges {
        display: none;
    }
    
    /* Badge oferta */
    .badge-premium {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Título menor */
    .hero-title-premium {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    /* Subtítulo */
    .hero-subtitle-premium {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    /* Descrição */
    .hero-description-premium {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    /* Features grid 2x2 */
    .hero-features-premium {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-quick {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    /* Trust signals 3 colunas */
    .trust-signals {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.4rem;
    }
    
    .trust-signal {
        padding: 0.5rem 0.2rem;
    }
    
    .trust-signal svg {
        width: 14px;
        height: 14px;
    }
    
    .trust-signal span {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    /* Fix sobreposição do highlight no mobile */
    .hero-title .highlight {
        display: block;
        margin-top: 0.3rem;
    }
    
    .hero-title .highlight::after {
        display: none;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .hero-features {
        display: none;
    }

    .hero-feature {
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .hero-feature svg {
        width: 18px;
        height: 18px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .price-info {
        padding: 1rem;
        gap: 0.8rem;
    }

    .old-price {
        font-size: 0.9rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .discount-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .btn-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .trust-signals {
        gap: 0.6rem;
    }

    .trust-signal {
        padding: 0.6rem 0.9rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .trust-signal svg {
        width: 16px;
        height: 16px;
    }

    .product-showcase-improved {
        min-height: 350px;
    }

    .product-image-improved {
        padding: 1.5rem;
    }

    .main-product-img-improved {
        max-width: 280px;
    }

    .spec-badges {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .spec-badge {
        padding: 0.5rem 0.8rem;
    }

    .spec-badge-icon {
        font-size: 1.1rem;
    }

    .spec-badge-text {
        font-size: 0.85rem;
    }

    .product-glow {
        width: 250px;
        height: 250px;
    }

    .gallery-header {
        margin-bottom: 1.5rem;
    }

    .gallery-title {
        font-size: 1.8rem;
    }

    .gallery-subtitle {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .main-gallery {
        grid-column: span 1;
    }

    .gallery-item {
        border-radius: 15px;
        height: 150px;
    }

    .gallery-item.main-gallery {
        height: 300px;
    }

    .gallery-label {
        font-size: 0.8rem;
        padding: 1rem;
    }

    .product-gallery {
        padding: 2rem 0;
    }

    .social-proof {
        padding: 2rem 0;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .features {
        padding: 3rem 0;
    }

    .features-grid {
        gap: 1.2rem;
    }

    .feature-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .spec-card {
        padding: 1.2rem;
    }

    .spec-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .spec-value {
        font-size: 1rem;
    }

    .specifications {
        padding: 3rem 0;
    }

    .benefits {
        padding: 3rem 0;
    }

    .benefits-list {
        gap: 1.2rem;
    }

    .benefit-item {
        gap: 1rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-item h4 {
        font-size: 1rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-grid {
        gap: 1.2rem;
    }

    .testimonial-card {
        padding: 1.2rem;
        border-radius: 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-photo {
        width: 45px;
        height: 45px;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-location {
        font-size: 0.8rem;
    }

    .guarantee {
        padding: 2.5rem 0;
    }

    .guarantee-badge {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .guarantee-badge svg {
        width: 40px;
        height: 40px;
    }

    .guarantee h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .guarantee p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .guarantee-list {
        font-size: 0.95rem;
    }

    .faq {
        padding: 3rem 0;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-box {
        padding: 1.5rem 1.2rem;
        border-radius: 20px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .cta-box p {
        font-size: 0.95rem;
    }

    .price-box {
        padding: 1.5rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }

    .price-box .price-current {
        font-size: 2.2rem;
    }

    .price-installment {
        font-size: 0.85rem;
    }

    .cta-benefits {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .cta-benefit {
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .cta-benefit svg {
        width: 16px;
        height: 16px;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .security-badges {
        gap: 0.8rem;
        flex-direction: column;
    }

    .security-badge {
        font-size: 0.85rem;
    }

    .urgency-message {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    #countdown {
        font-size: 1rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 10px;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
    }

    .lightbox-caption {
        bottom: 15px;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        max-width: 90%;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
}

/* Purchase Notification Popup */
/* NOTIFICAÇÕES REMOVIDAS */
.purchase-notification {
    display: none !important;
    position: fixed;
    top: -200px;
    left: 20px;
    z-index: 9998;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 0.8rem;
    min-width: 240px;
    max-width: 280px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 3px solid var(--primary-color);
}

.purchase-notification.show {
    top: 100px;
    animation: slideInBounce 0.5s ease;
}

@keyframes slideInBounce {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    60% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
}

.notification-text {
    flex: 1;
}

.notification-name {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.notification-product {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.notification-product strong {
    color: var(--primary-color);
}

.notification-time {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.notification-time::before {
    content: '🕐';
    font-size: 0.9rem;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .purchase-notification {
        left: 10px;
        right: auto;
        min-width: auto;
        max-width: 240px;
        padding: 0.4rem 0.6rem;
        border-radius: 6px;
    }

    .purchase-notification.show {
        top: 90px; /* Abaixo da barra de urgência */
    }

    .notification-icon {
        font-size: 1rem;
    }

    .notification-name {
        font-size: 0.75rem;
    }
    
    .notification-product {
        font-size: 0.7rem;
    }
    
    .notification-time {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .purchase-notification {
        padding: 0.35rem 0.5rem;
        max-width: 220px;
        border-radius: 6px;
    }
    
    .purchase-notification.show {
        top: 80px;
    }

    .notification-content {
        gap: 0.4rem;
    }

    .notification-icon {
        font-size: 0.9rem;
    }
    
    .notification-name {
        font-size: 0.7rem;
    }
    
    .notification-product {
        font-size: 0.65rem;
    }
    
    .notification-time {
        font-size: 0.6rem;
    }
    
    .notification-close {
        font-size: 0.9rem;
        padding: 0.1rem;
        width: 18px;
        height: 18px;
    }
}

/* Stock Progress Bar */
.stock-progress {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.stock-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.stock-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.stock-percentage {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.stock-progress-bar {
    height: 12px;
    background: #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.stock-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #F7931E);
    width: 18%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
    animation: pulse-progress 2s ease-in-out infinite;
}

@keyframes pulse-progress {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.stock-message {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.stock-message strong {
    color: #d32f2f;
}

/* Floating Buy Button */
/* Floating Buy Button NOVO */
.floating-buy-button-new {
    position: fixed;
    bottom: -200px; /* Mais escondido para garantir */
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: 0 -8px 30px rgba(0, 102, 255, 0.4);
    padding: 1rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 -8px 30px rgba(0, 102, 255, 0.4);
    }
    50% {
        box-shadow: 0 -8px 40px rgba(0, 102, 255, 0.6);
    }
}

.floating-buy-button-new.show {
    bottom: 0 !important;
}

.floating-price-tag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0.5rem;
}

.floating-old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: rgba(255,255,255,0.8);
}

.floating-current-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.floating-btn-cta-new {
    background: white;
    color: #FF6B35;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.floating-btn-cta-new:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-timer {
    position: fixed;
    bottom: -100px; /* Escondido por padrão */
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px 20px 0 0;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 10001;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-timer.show {
    bottom: 70px !important;
}

.floating-timer strong {
    font-weight: 800;
    color: #FFD700;
}

/* OLD STYLES (remover depois) */
.floating-btn-cta {
    background: var(--gradient-2);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.floating-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.6);
}

@media (max-width: 768px) {
    .urgency-content {
        flex-direction: row;
        justify-content: space-evenly;
        gap: 0.8rem;
        padding: 0.4rem 10px;
    }

    .urgency-item {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .urgency-text {
        white-space: nowrap;
    }

    .urgency-bar {
        padding: 0.4rem 0;
    }
    
    .urgency-icon {
        font-size: 0.9rem;
    }

    .navbar {
        top: 0 !important; /* FIXO NO TOPO - SEM ESPAÇO */
    }

    .hero {
        padding-top: 80px; /* AJUSTADO - apenas altura da navbar */
    }

    .floating-btn-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .floating-btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* Floating Button Melhorado - Mobile */
    .floating-buy-button-new {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 0.8rem 1.2rem 0.8rem;
        align-items: stretch;
    }
    
    .floating-price-tag {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 0;
    }
    
    .floating-current-price {
        font-size: 1.6rem;
    }
    
    .floating-btn-cta-new {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
    }
    
    .floating-timer {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
        border-radius: 15px 15px 0 0;
    }
    
    .floating-timer.show {
        bottom: 85px !important; /* Mais espaço para não sobrepor */
    }
}

/* ========== MELHORIAS DE CONVERSÃO ========== */

/* CONTADOR DE VENDAS EM TEMPO REAL */
.sales-counter {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: pulse-counter 2s ease-in-out infinite;
}

@keyframes pulse-counter {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.sales-counter-icon {
    font-size: 2rem;
    animation: fire-flicker 1s ease-in-out infinite;
}

@keyframes fire-flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.sales-counter-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.sales-counter-text strong {
    font-size: 1.4rem;
    font-weight: 800;
}

/* GARANTIA VISUAL FORTE */
.guarantee-badge-big {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.guarantee-shield {
    font-size: 3.5rem;
    animation: shield-bounce 2s ease-in-out infinite;
}

@keyframes shield-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.guarantee-text {
    text-align: left;
}

.guarantee-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
}

.guarantee-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

/* MOBILE - Melhorias */
@media (max-width: 768px) {
    .sales-counter {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .sales-counter-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .sales-counter-text strong {
        font-size: 1.2rem;
    }
    
    .guarantee-badge-big {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .guarantee-shield {
        font-size: 2.5rem;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .guarantee-title {
        font-size: 1.1rem;
    }
    
    .guarantee-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .floating-current-price {
        font-size: 1.4rem;
    }
    
    .floating-btn-cta-new {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

/* ========================================================================
   🎨 PREMIUM DESIGN SYSTEM - MELHORIAS EXTREMAS
   ======================================================================== */

/* =====================================================
   HERO SECTION PREMIUM
   ===================================================== */

.hero-premium {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.95) 0%, 
        rgba(0, 212, 255, 0.92) 50%,
        rgba(51, 133, 255, 0.95) 100%);
    backdrop-filter: blur(2px);
}

/* Live Activity Badge */
/* LIVE ACTIVITY REMOVIDO */
.live-activity {
    display: none !important;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.live-indicator {
    animation: pulse-live 2s ease-in-out infinite;
    font-size: 0.8rem;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
}

.live-text strong {
    font-weight: 800;
}

.live-separator {
    color: rgba(255, 255, 255, 0.5);
}

.live-recent {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fade-in-out 8s ease-in-out infinite;
}

@keyframes fade-in-out {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Product Showcase Premium */
.product-showcase-premium {
    position: relative;
    padding: 2rem;
    z-index: 1;
}

.product-glow-premium {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0) 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Floating Trust Badges */
.floating-trust-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.trust-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float-badge 4s ease-in-out infinite;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 2;
}

.trust-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.trust-badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.trust-badge-2 {
    top: 50%;
    left: -15%;
    animation-delay: 1s;
}

.trust-badge-3 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.trust-icon {
    font-size: 2rem;
    line-height: 1;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-text strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Product Image Premium */
.product-image-premium {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.main-product-img-premium {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float 3s ease-in-out infinite;
}

.main-product-img-premium:hover {
    transform: scale(1.05) rotate(2deg);
    animation-play-state: paused;
}

/* 360° Button */
.view-360-btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.view-360-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: var(--primary-color);
    color: white;
}

.btn-360-icon {
    animation: rotate-360 3s linear infinite;
}

@keyframes rotate-360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Typography Premium */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); }
}

.badge-icon {
    animation: icon-bounce 1s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.highlight-premium {
    display: inline-block;
    background: linear-gradient(135deg, #FFF 0%, #FFFACD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); }
}

.hero-subtitle-premium {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.hero-description-premium {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-description-premium strong {
    font-weight: 700;
    color: white;
}

/* Hero Features Quick List */
.hero-features-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-quick {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.feature-quick:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-check {
    font-size: 1.5rem;
    color: white;
    font-weight: 900;
}

.feature-quick span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

/* Button Premium */
.btn-primary-premium {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary-premium:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary-premium:hover .btn-text,
.btn-primary-premium:hover .btn-icon {
    color: white;
    position: relative;
    z-index: 1;
}

.btn-pulse {
    animation: btn-pulse-effect 2s ease-in-out infinite;
}

@keyframes btn-pulse-effect {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 15px 50px rgba(0, 102, 255, 0.4); }
}

/* =====================================================
   COMPARISON SECTION
   ===================================================== */

.comparison-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge-premium {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.section-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vs-text {
    color: var(--primary-color);
    font-style: italic;
}

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

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.comparison-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.comparison-old {
    border: 3px solid #e2e8f0;
}

.comparison-new {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
}

.comparison-new:hover {
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.comparison-icon {
    font-size: 3rem;
}

.comparison-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
    margin: 0 1rem;
}

.comparison-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.comparison-badge.bad {
    background: #fee2e2;
    color: #991b1b;
}

.comparison-badge.good {
    background: #d1fae5;
    color: #065f46;
}

.comparison-image {
    margin-bottom: 2rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateX(5px);
}

.comparison-item.negative {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.comparison-item.negative:hover {
    background: #fee2e2;
}

.comparison-item.positive {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.comparison-item.positive:hover {
    background: #dcfce7;
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.item-content strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.item-content span {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.savings-highlight {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
    animation: savings-bounce 2s ease-in-out infinite;
}

@keyframes savings-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.savings-icon {
    font-size: 4rem;
}

.savings-content {
    text-align: left;
}

.savings-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.savings-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */

.how-it-works-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    z-index: 2;
}

.step-visual {
    background: linear-gradient(135deg, #E6F2FF 0%, #CCE5FF 100%);
    border-radius: 20px;
    padding: 4rem 2rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.step-animation-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: ring-expand 2s ease-in-out infinite;
}

@keyframes ring-expand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
}

.step-icon {
    font-size: 5rem;
    position: relative;
    z-index: 1;
    animation: step-bounce 2s ease-in-out infinite;
}

@keyframes step-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.how-it-works-video {
    text-align: center;
}

.video-card {
    max-width: 700px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.video-caption {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

/* =====================================================
   USES SECTION
   ===================================================== */

.uses-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.use-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.use-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.use-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.use-card:hover .use-icon {
    transform: scale(1.2) rotate(-5deg);
}

.use-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.use-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* =====================================================
   MOBILE RESPONSIVE - PREMIUM
   ===================================================== */

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .uses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badge-1,
    .trust-badge-2,
    .trust-badge-3 {
        position: static;
        margin-bottom: 1rem;
    }
    
    .floating-trust-badges {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title-premium {
        font-size: 2.5rem;
    }
    
    .hero-title-modern {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-premium {
        font-size: 1.3rem;
    }
    
    .hero-description-premium {
        font-size: 1rem;
    }
    
    .hero-features-premium {
        grid-template-columns: 1fr;
    }
    
    .section-title-premium {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .uses-grid {
        grid-template-columns: 1fr;
    }
    
    .savings-highlight {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }
    
    .savings-content {
        text-align: center;
    }
    
    .savings-title {
        font-size: 1.5rem;
    }
    
    .savings-subtitle {
        font-size: 1rem;
    }
    
    .live-activity {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .live-separator {
        display: none;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .comparison-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title-premium {
        font-size: 2rem;
    }
    
    .hero-title-modern {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-premium {
        font-size: 1.1rem;
    }
    
    .section-title-premium {
        font-size: 2rem;
    }
    
    .btn-primary-premium {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .savings-icon {
        font-size: 3rem;
    }
}

/* =====================================================
   PERFORMANCE OPTIMIZATIONS
   ===================================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration for smooth animations */
.hero-video,
.product-glow-premium,
.trust-badge,
.main-product-img-premium,
.comparison-card,
.use-card,
.step-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* =====================================================
   GALLERY PROFESSIONAL ENHANCEMENTS
   ===================================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-item img {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    background: rgba(0, 102, 255, 0.9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Lightbox Enhanced */
.lightbox {
    touch-action: pinch-zoom;
}

.lightbox-content {
    touch-action: pinch-zoom;
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

/* =====================================================
   MOBILE BOTTOM SHEET
   ===================================================== */

.mobile-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 60vh;
    display: none;
}

.mobile-bottom-sheet.active {
    transform: translateY(0);
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 12px auto;
}

.bottom-sheet-content {
    padding: 0 1.5rem 2rem;
    overflow-y: auto;
    max-height: calc(60vh - 50px);
}

.bottom-sheet-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.bottom-sheet-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.spec-label {
    font-weight: 600;
    color: var(--text-light);
}

.spec-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .mobile-bottom-sheet {
        display: block;
    }
}

/* =====================================================
   SWIPE GALLERY INDICATORS
   ===================================================== */

.gallery-swipe-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-grid:hover .gallery-swipe-indicator {
    opacity: 1;
}

.swipe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.swipe-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* =====================================================
   ENHANCED HOVER EFFECTS
   ===================================================== */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.feature-card,
.benefit-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover,
.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* =====================================================
   LOADING SKELETON
   ===================================================== */

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

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

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

/* =====================================================
   TOAST NOTIFICATIONS
   ===================================================== */

.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-message {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 80px;
        right: 10px;
        left: 10px;
        transform: translateY(200px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* =====================================================
   IMAGE ZOOM ON TAP (MOBILE)
   ===================================================== */

@media (max-width: 768px) {
    .main-product-img-premium {
        touch-action: pan-y pinch-zoom; /* Permite scroll vertical + zoom */
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    
    .product-image-premium {
        max-width: 350px;
        margin: 2rem auto;
        touch-action: pan-y; /* Permite scroll */
    }
    
    .product-showcase-premium {
        padding: 1rem;
        touch-action: pan-y; /* Permite scroll */
    }
    
    .hero-image {
        touch-action: pan-y; /* Permite scroll em toda a área da imagem */
    }
    
    .gallery-item img {
        touch-action: pan-y pinch-zoom; /* Permite scroll + zoom */
    }
}

/* =====================================================
   ACCESSIBILITY IMPROVEMENTS
   ===================================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .trust-badge,
    .comparison-card,
    .use-card {
        border: 2px solid var(--text-dark);
    }
}

/* Dark mode support (for future implementation) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f8fafc;
        --text-light: #cbd5e1;
        --bg-light: #1e293b;
        --bg-white: #0f172a;
        --border-color: #334155;
    }
}

