/* ===== CSS VARIABLES ===== */
:root {
    /* CORES PRINCIPAIS */
    --color-primary: #0fa08a;
    --color-primary-dark: #0d8a73;
    --color-accent: #ffb545;
    --color-accent-dark: #ff9500;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-dark: #212529;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    
    /* CORES DE CONVERSÃO */
    --color-urgency: #ff4757;
    --color-scarcity: #ff6b35;
    --color-trust: #2ed573;
    --color-authority: #5352ed;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-cta: linear-gradient(135deg, var(--color-accent) 0%, #ff6b35 100%);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-gray);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gradient-cta);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-align: center;
    min-height: 64px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #ff6b35 0%, var(--color-accent) 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-hero);
    padding: var(--spacing-xxl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xxl);
    }
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.5;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.highlight-time {
    background: var(--gradient-accent);
    color: var(--color-dark);
    padding: 0.3em 0.6em;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 181, 69, 0.4);
    animation: pulse 2s infinite;
}

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

.cta-container {
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.microcopy {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
}

.credibility-seals {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.seal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-trust);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.seal:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--color-white);
}

.seal-icon {
    font-size: 1.3rem;
}

.seal-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .credibility-seals {
        justify-content: flex-start;
    }
    
    .microcopy {
        text-align: left;
    }
}

/* ===== HERO IMAGE ===== */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.product-mockup {
    position: relative;
    max-width: 450px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.product-image {
    width: 100%;
    border-radius: var(--border-radius-xl);
    transition: transform var(--transition-slow);
}

.product-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: var(--color-white);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: var(--shadow-xl);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* ===== WHAT IS SECTION ===== */
.what-is {
    background: var(--color-white);
    position: relative;
}

.what-is::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(15, 160, 138, 0.05) 50%, transparent 51%);
}

.bullets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .bullets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bullet-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.bullet-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.bullet-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bullet-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-dark);
}

.bullet-item strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ===== WHY NEED SECTION ===== */
.why-need {
    background: linear-gradient(135deg, var(--color-gray-light) 0%, #e9ecef 100%);
    position: relative;
}

.emotional-opening {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--color-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
    font-weight: 500;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--color-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.benefit-item:hover::before {
    opacity: 0.1;
}

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

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

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.benefit-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0 0 var(--spacing-sm) 0;
    position: relative;
    z-index: 2;
}

.benefit-description {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
    background: var(--color-white);
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(15, 160, 138, 0.1) 0%, transparent 50%);
}

.rating {
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 2rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-left: var(--spacing-sm);
}

.rating-text {
    color: var(--color-gray);
    font-size: 1rem;
    font-weight: 500;
}

.testimonials-carousel {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 4px;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.testimonial-whatsapp {
    flex: 0 0 auto;
    scroll-snap-align: start;
    max-width: 350px;
    transition: transform var(--transition-normal);
}

.testimonial-whatsapp:hover {
    transform: scale(1.05);
}

.whatsapp-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.overall-rating {
    text-align: center;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.rating-highlight {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.rating-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.rating-score {
    font-size: 2rem;
    font-weight: 800;
}

.rating-description {
    font-size: 1.1rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .testimonials-carousel {
        justify-content: center;
        overflow-x: visible;
    }
    
    .testimonial-whatsapp {
        flex: 0 0 300px;
    }
}

/* ===== WHAT RECEIVE SECTION ===== */
.what-receive {
    background: linear-gradient(135deg, var(--color-gray-light) 0%, #e9ecef 100%);
    position: relative;
}

.receive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .receive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .receive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.receive-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.receive-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.receive-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.receive-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.receive-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.receive-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(184deg) brightness(90%) contrast(95%);
}

.receive-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.3;
}

.receive-description {
    font-size: 1rem;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.5;
}

/* ===== OFFER SECTION ===== */
.offer {
    background: var(--gradient-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xxl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.offer-title {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.price-container {
    margin: var(--spacing-lg) 0;
    position: relative;
}

.price {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--color-accent);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 181, 69, 0.5); }
    to { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 181, 69, 0.8); }
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .guarantees {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

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

/* Security Elements */
.security-elements {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

.security-text {
    font-weight: 700;
    font-size: 1rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
}

.guarantee-circle {
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255, 181, 69, 0.5);
    animation: pulse 2s infinite;
}

.payment-methods-cta {
    margin: var(--spacing-lg) 0;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.payment-method {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--color-white);
    position: relative;
}

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

.faq-item {
    border-bottom: 2px solid var(--color-gray-light);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    background: var(--color-gray-light);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: left;
}

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

.faq-icon {
    font-size: 2rem;
    color: var(--color-primary);
    transition: all var(--transition-normal);
    font-weight: 300;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    background: var(--color-white);
}

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

.faq-answer p {
    padding: var(--spacing-lg);
    color: var(--color-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 var(--spacing-md) 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

@media (min-width: 768px) {
    .footer-links {
        align-items: flex-start;
    }
}

.footer-link {
    color: var(--color-white);
    opacity: 0.8;
    transition: all var(--transition-normal);
    font-size: 1rem;
    font-weight: 500;
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-accent);
    transform: translateX(5px);
}

.payment-security {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

@media (min-width: 768px) {
    .payment-badges {
        justify-content: flex-start;
    }
}

.payment-badge {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.payment-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.security-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    opacity: 0.7;
    font-size: 1rem;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-lg);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--border-radius-xl);
    max-width: 90%;
    max-height: 90%;
    width: 900px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: bold;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* mantém proporção sem cortar */
    display: block;
}



/* ===== STICKY CTA MOBILE ===== */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--spacing-sm);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-top: 3px solid var(--color-primary);
    display: none;
}

@media (max-width: 767px) {
    .sticky-cta-mobile {
        display: block;
    }
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
}

.sticky-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sticky-price-label {
    font-size: 0.8rem;
    color: var(--color-gray);
    font-weight: 500;
}

.sticky-price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.sticky-btn {
    background: var(--gradient-cta);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
    .hero {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }
    
    .hero-content {
        gap: var(--spacing-lg);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid,
    .receive-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .offer-box {
        padding: var(--spacing-lg);
    }
    
    .security-elements {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .guarantees {
        gap: var(--spacing-sm);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero,
    .sticky-cta-mobile,
    .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}


/* ===== ABOUT ME SECTION ===== */
.about-me {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    max-width: none;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-subtitle {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    position: relative;
}

.story-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.promise-box {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(74, 85, 104, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.promise-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 92, 249, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    border-radius: 16px;
}

.promise-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.promise-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #f7fafc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.promise-text:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-photo {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.author-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
}

.author-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

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

/* ===== BONUS EXTRA SECTION ===== */
.bonus-extra {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bonus-extra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>') repeat-x;
    opacity: 0.1;
}

.bonus-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.bonus-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.bonus-icon {
    margin-bottom: 1.5rem;
}

.bonus-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.bonus-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

.bonus-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

.bonus-total {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.total-value {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-urgency {
    background: rgba(255, 71, 87, 0.9);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: 0 auto;
    max-width: 600px;
}

.urgency-text {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.bonus-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.bonus-microcopy {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 4rem 0;
    background: #f8f9fa;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.author-age {
    font-size: 0.9rem;
    color: #6c757d;
}

.reviews-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem 2rem;
    border-radius: 20px;
    color: white;
    margin-top: 2rem;
}

.reviews-cta .cta-title {
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.reviews-cta .cta-microcopy {
    margin-top: 1rem;
    opacity: 0.9;
}

/* ===== SECTION CTA ===== */
.section-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.cta-microcopy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

/* ===== FINAL MOTIVATION SECTION ===== */
.final-motivation {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-motivation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(116, 92, 249, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 71, 87, 0.3) 0%, transparent 50%);
    opacity: 0.7;
}

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

.motivation-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: white;
}

.motivation-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

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

.final-urgency {
    background: rgba(255, 71, 87, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.urgency-message {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

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

.btn-final {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    margin-bottom: 1.5rem;
}

.final-microcopy {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-guarantee {
    display: flex;
    justify-content: center;
}

.guarantee-badge-final {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.guarantee-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .author-img {
        width: 150px;
        height: 150px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
    }
    
    .motivation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .motivation-title {
        font-size: 1.8rem;
    }
    
    .guarantee-badge-final {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-me,
    .bonus-extra,
    .reviews,
    .final-motivation {
        padding: 2rem 0;
    }
    
    .bonus-item,
    .review-card,
    .cta-box {
        padding: 1.5rem;
    }
    
    .motivation-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

