/* ==============================================
   RESET & BASE STYLES
   ============================================== */

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

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

:root {
    /* Colors */
    --primary: #ec4899;
    --primary-dark: #db2777;
    --primary-light: #f9a8d4;
    --secondary: #f472b6;
    --accent: #fbbf24;
    --success: #ec4899;
    --warning: #fbbf24;
    --danger: #ef4444;
    
    /* Green CTA Colors */
    --green-cta: #10b981;
    --green-cta-dark: #059669;
    --green-cta-light: #34d399;
    
    /* Neutral Colors */
    --dark: #111827;
    --dark-gray: #1f2937;
    --gray: #6b7280;
    --light-gray: #fdf2f8;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    --gradient-secondary: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #831843 0%, #be185d 50%, #ec4899 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Shadows */
    --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);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

body.loaded {
    animation: fadeIn 0.5s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

/* ==============================================
   TYPOGRAPHY
   ============================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
}

/* ==============================================
   BUTTONS
   ============================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: 2px solid var(--green-cta-light);
    font-weight: 700;
    animation: pulse-green 2.5s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    animation: none;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
    }
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--white);
    border: 2px solid var(--green-cta-light);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse-green 2.5s infinite;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
    animation: none;
}

.btn-cta {
    background: var(--gradient-green);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    border: 2px solid var(--green-cta-light);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-xl {
    padding: 1.75rem 3.5rem;
    font-size: 1.375rem;
}

.btn-block {
    width: 100%;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 50px rgba(16, 185, 129, 0.7);
        transform: scale(1.02);
    }
}

.btn.breathe {
    animation: breathe 1s ease;
}

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

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* ==============================================
   HEADER
   ============================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header.sticky {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-dellas {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-vit {
    color: var(--white);
    font-weight: 700;
    background: var(--gradient-primary);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    margin-left: 2px;
    letter-spacing: 0.5px;
}

.logo i {
    color: var(--primary);
    font-size: 1.75rem;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-list a:hover {
    color: var(--primary);
}

.nav-list a:hover::after {
    width: 100%;
}

.btn-header {
    padding: 0.75rem 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

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

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

.hero-text {
    color: var(--white);
}

.badge-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    animation: pulse-badge 2s infinite;
}

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

.badge-promo i {
    animation: fire 1s infinite;
}

@keyframes fire {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.hero-benefits {
    display: flex;
    gap: 1.5rem;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.hero-benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-benefit-item i {
    font-size: 1.25rem;
    color: var(--primary-light);
}

.hero-price-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-2xl);
    margin-bottom: var(--spacing-xl);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

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

.price-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
}

.price-content {
    text-align: center;
    color: var(--dark);
}

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

.old-price span {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--gray);
}

.discount-badge {
    padding: 0.25rem 0.75rem;
    background: var(--danger);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.current-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 0.5rem;
}

.current-price .price {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.current-price .cents {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.5rem;
}

.price-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.installment {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.urgency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: var(--spacing-md);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

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

.product-showcase {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform var(--transition-base);
    z-index: 10;
}

.floating-badge i {
    color: var(--primary);
}

.floating-badge.badge-green {
    border: 2px solid var(--green-cta-light);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.floating-badge.badge-green i {
    color: var(--green-cta);
}

.badge-1 {
    top: 5%;
    left: -5%;
    animation: float 3s ease-in-out infinite;
}

.badge-2 {
    top: 45%;
    right: -5%;
    animation: float 3s ease-in-out infinite 1s;
}

.badge-3 {
    bottom: 5%;
    left: 5%;
    animation: float 3s ease-in-out infinite 2s;
}

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

/* ==============================================
   STATS SECTION
   ============================================== */

.stats {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.stat-item:nth-child(even) .stat-icon {
    color: var(--green-cta);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-heading);
}

.stat-decimal {
    font-size: 1.5rem;
    color: var(--gray);
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
}

/* ==============================================
   SECTION HEADERS
   ============================================== */

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-badge.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green-cta-dark);
    border: 1px solid var(--green-cta-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
}

/* ==============================================
   BENEFÍCIOS SECTION
   ============================================== */

.beneficios {
    padding: 6rem 0;
}

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

.beneficio-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.beneficio-card.animate-in {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.beneficio-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    background: var(--gradient-green);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.beneficio-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.beneficio-card p {
    color: var(--gray);
    margin: 0;
}

/* ==============================================
   COMPONENTES SECTION
   ============================================== */

.componentes {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.componentes-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.componentes-image {
    position: sticky;
    top: 100px;
    text-align: center;
}

.componentes-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(236, 72, 153, 0.3));
    animation: float 6s ease-in-out infinite;
}

.componentes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.componente-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.componente-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.componente-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-radius: 15px;
    flex-shrink: 0;
}

.componente-content {
    flex: 1;
}

.componente-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.componente-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.componente-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.componente-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.componente-content ul li:last-child {
    margin-bottom: 0;
}

/* ==============================================
   PREÇOS SECTION
   ============================================== */

.precos {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate-in {
    animation: slideUp 0.6s ease forwards;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--green-cta);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.pricing-card.featured.animate-in {
    animation: slideUpScale 0.6s ease forwards;
}

@keyframes slideUpScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-green);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
    }
}

.pricing-header {
    text-align: center;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray);
    margin: 0;
}

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

.price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-current .currency {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.price-current .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-current .cents {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.highlight-price .amount {
    color: var(--primary);
}

.price-installment {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.economy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--green-cta);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.discount-label {
    position: absolute;
    top: 20px;
    right: -10px;
    padding: 0.5rem 1rem;
    background: var(--danger);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.featured-discount {
    background: var(--accent);
}

.pricing-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 2.5rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

/* ==============================================
   COMPARAÇÃO SECTION
   ============================================== */

.comparacao {
    padding: 6rem 0;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table thead {
    background: var(--dark);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.comparison-table th.highlight-col {
    background: var(--primary);
    position: relative;
}

.best-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.table-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table td.highlight-col {
    background: rgba(16, 185, 129, 0.05);
}

.comparison-table i.fa-check-circle {
    color: var(--green-cta);
    font-size: 1.5rem;
}

.comparison-table i.fa-times {
    color: var(--gray);
    font-size: 1.5rem;
}

.comparison-cta {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    color: var(--white);
}

.comparison-cta h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.comparison-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

/* ==============================================
   ANTES E DEPOIS SECTION
   ============================================== */

.antes-depois {
    padding: 6rem 0;
    background: var(--white);
}

.antes-depois-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.antes-depois-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.antes-depois-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.antes-depois-card.antes {
    border: 3px solid rgba(239, 68, 68, 0.3);
}

.antes-depois-card.depois {
    border: 3px solid var(--primary);
}

.antes-depois-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.antes-depois-card.antes .card-header i {
    font-size: 2rem;
    color: #ef4444;
}

.antes-depois-card.depois .card-header i {
    font-size: 2rem;
    color: var(--primary);
}

.antes-depois-card .card-header h3 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--dark);
}

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

.symptoms-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.symptoms-list li:last-child {
    border-bottom: none;
}

.antes .symptoms-list li i {
    color: #ef4444;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.depois .symptoms-list li i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.antes-depois-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.arrow-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.transform-text {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.transform-text span {
    font-weight: 700;
    color: var(--white);
    font-size: 1.125rem;
    white-space: nowrap;
}

.antes-depois-cta {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    color: var(--white);
}

.antes-depois-cta p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ==============================================
   DEPOIMENTOS SECTION
   ============================================== */

.depoimentos {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.video-depoimento {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.video-depoimento:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio para shorts */
    height: 0;
    overflow: hidden;
}

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

.video-caption {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.5;
}

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

.foto-depoimento {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.foto-depoimento:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.foto-depoimento img {
    width: 100%;
    height: auto;
    display: block;
}

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

.depoimento-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.depoimento-card.animate-in {
    animation: slideUp 0.6s ease forwards;
}

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

.depoimento-rating {
    color: var(--accent);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.depoimento-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==============================================
   GARANTIA SECTION
   ============================================== */

.garantia {
    padding: 6rem 0;
}

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

.garantia-image {
    position: relative;
    height: 400px;
    background: var(--light-gray);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.garantia-badge {
    text-align: center;
    padding: 2rem;
}

.garantia-badge i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.garantia-badge span {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.garantia-badge small {
    display: block;
    font-size: 1.125rem;
    color: var(--gray);
}

.garantia-text h2 {
    margin-bottom: var(--spacing-md);
}

.garantia-description {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.garantia-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.garantia-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.garantia-list i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ==============================================
   FAQ SECTION
   ============================================== */

.faq {
    padding: 6rem 0;
    background: var(--light-gray);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

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

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

.faq-question i {
    color: var(--primary);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ==============================================
   CTA FINAL SECTION
   ============================================== */

.cta-final {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: var(--white);
}

.cta-final-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.cta-final-content > p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.cta-final-offer {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    margin-bottom: var(--spacing-xl);
}

.offer-highlight {
    margin-bottom: var(--spacing-lg);
}

.offer-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.offer-price {
    margin-top: var(--spacing-md);
}

.price-big {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-sub {
    display: block;
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-final-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.cta-final-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-final-trust i {
    font-size: 1.5rem;
}

/* ==============================================
   FOOTER
   ============================================== */

.footer {
    padding: 4rem 0 2rem;
    background: var(--dark);
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    line-height: 1;
}

.footer-logo i {
    color: var(--primary);
}

.footer-logo strong {
    color: var(--primary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--primary);
}

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

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

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-list i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
    font-size: 0.75rem;
    margin-top: var(--spacing-md);
}

/* ==============================================
   FLOATING ELEMENTS
   ============================================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}

.social-proof-notification {
    position: fixed;
    bottom: 100px;
    left: 20px;
    max-width: 350px;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(-150%);
    transition: transform var(--transition-base);
}

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

.social-proof-notification i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-proof-notification span {
    font-size: 0.875rem;
    color: var(--dark);
}

.copy-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    animation: slideInRight 0.3s ease;
}

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

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Disable parallax effects on mobile */
    .hero-content,
    .hero-image,
    .hero-text,
    .product-showcase,
    .product-image {
        transform: none !important;
        opacity: 1 !important;
    }
    
    h1 { font-size: 2rem; line-height: 1.2; }
    h2 { font-size: 1.75rem; line-height: 1.3; }
    h3 { font-size: 1.25rem; line-height: 1.4; }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    
    /* Seções com espaçamento reduzido */
    section {
        padding: 3rem 0;
    }
    
    /* Header Mobile */
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-dellas,
    .logo-vit {
        font-size: 1.1rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        padding: 2rem 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-list li a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
    }
    
    .btn-header {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
        padding: 0.5rem;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 5rem 0 2rem;
        overflow: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-benefit {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .hero-price-card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .hero-image {
        height: 350px;
        transform: none !important;
        opacity: 1 !important;
        margin-top: 2rem;
    }
    
    .product-showcase {
        padding: 1rem;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .product-image {
        max-width: 90%;
        max-height: 90%;
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
    }
    
    .floating-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
        gap: 0.2rem;
        position: absolute;
        white-space: nowrap;
    }
    
    .floating-badge i {
        font-size: 0.75rem;
    }
    
    .badge-1 {
        left: 5px;
        top: 5%;
    }
    
    .badge-2 {
        right: 5px;
        top: 40%;
    }
    
    .badge-3 {
        left: 5px;
        bottom: 5%;
    }
    
    .current-price .price {
        font-size: 3rem;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Benefícios Mobile */
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        border-width: 3px;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price-current .amount {
        font-size: 2.5rem;
    }
    
    .features-list {
        font-size: 0.9rem;
    }
    
    /* Componentes Mobile */
    .componentes-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .componentes-image {
        position: relative;
        top: 0;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .componente-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .componente-icon {
        font-size: 2rem;
        min-width: 50px;
        height: 50px;
        align-self: flex-start;
    }
    
    .componente-content h3 {
        font-size: 1.25rem;
    }
    
    .componente-content ul li {
        font-size: 0.95rem;
    }
    
    /* Depoimentos Mobile */
    .depoimentos-videos {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-fotos {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    /* Garantia Mobile */
    .garantia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Antes e Depois Mobile */
    .antes-depois-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .antes-depois-divider {
        flex-direction: row;
        justify-content: center;
    }
    
    .arrow-icon {
        transform: rotate(90deg);
    }
    
    .antes-depois-card {
        padding: 1.5rem;
    }
    
    .symptoms-list li {
        font-size: 0.9rem;
    }
    
    .antes-depois-cta p {
        font-size: 1.25rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* CTA Final Mobile */
    .cta-final-content h2 {
        font-size: 2rem;
    }
    
    .price-big {
        font-size: 2.5rem;
    }
    
    .cta-final-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-large, .btn-xl {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .btn-block {
        width: 100%;
    }
    
    .btn-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Comparison Table Mobile */
    .comparison-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.35rem;
        font-size: 0.75rem;
    }
    
    .comparison-table i {
        font-size: 1rem;
    }
    
    /* Social Proof Mobile */
    .social-proof-notification {
        max-width: 280px;
        padding: 0.75rem 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-price-card {
        padding: 1.25rem;
    }
    
    .current-price .price {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .trust-badges {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .trust-item {
        font-size: 0.7rem;
    }
    
    .comparison-cta h3 {
        font-size: 1.25rem;
    }
    
    .payment-methods {
        font-size: 1.5rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .floating-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.4rem;
    }
    
    .floating-badge i {
        font-size: 0.65rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price-current .amount {
        font-size: 2rem;
    }
    
    .componentes-image {
        max-width: 250px;
    }
    
    .componente-item {
        padding: 1.25rem;
    }
    
    .componente-content h3 {
        font-size: 1.1rem;
    }
    
    .hero-benefits {
        gap: 0.75rem;
    }
    
    .hero-benefit-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* ==============================================
   ANIMATIONS & UTILITIES
   ============================================== */

.pulse-animation {
    animation: pulse 1s ease-in-out 3;
}

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

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .social-proof-notification,
    .scroll-progress {
        display: none;
    }
}
