/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--bg-white);
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    min-height: 44px;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: var(--border-radius-lg);
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 18px;
    min-width: 20px;
}

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

.cta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 10px;
}

.cta-info i {
    color: var(--success-color);
}

.social-proof-mini {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.social-proof-mini .stars {
    display: flex;
    gap: 4px;
    color: var(--accent-color);
    font-size: 14px;
}

.social-proof-mini p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.image-badge i {
    color: var(--accent-color);
    font-size: 24px;
}

.image-badge strong {
    display: block;
    color: var(--text-dark);
    font-size: 12px;
    margin-bottom: 2px;
}

.image-badge span {
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-medium);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.problem-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.problem-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    background: linear-gradient(135deg, var(--warning-color), #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
}

.highlight-text i {
    color: var(--warning-color);
    margin-right: 8px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.video-container {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.video-benefits h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.video-benefits ul {
    list-style: none;
    padding: 0;
}

.video-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.video-benefits li i {
    color: var(--primary-color);
    min-width: 16px;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-badge {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto 20px;
    width: fit-content;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
}

.solution-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.solution-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.solution-card p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 50px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.step-content p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.stars {
    display: flex;
    gap: 4px;
    color: var(--accent-color);
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
}

.testimonial-author span {
    color: var(--text-medium);
    font-size: 12px;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 50px 0;
}

.bonus-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.bonus-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 0 0 8px;
}

.bonus-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bonus-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.bonus-card p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.bonus-value {
    display: block;
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
}

.bonus-total {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 24px;
    border-radius: var(--border-radius-lg);
}

.bonus-total .strikethrough {
    text-decoration: line-through;
    opacity: 0.8;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.offer-box {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    border-radius: var(--border-radius-lg);
    padding: 40px 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.offer-header {
    text-align: center;
    margin-bottom: 40px;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.price-box {
    text-align: center;
    margin-bottom: 30px;
}

.price-label {
    color: var(--text-medium);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 8px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 600;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin: 16px 0;
}

.currency {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 4px;
}

.value {
    font-size: clamp(3rem, 8vw, 4rem);
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 4px;
}

.installments {
    color: var(--text-medium);
    font-size: 14px;
    margin-top: 8px;
}

.offer-includes h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.offer-includes ul {
    list-style: none;
    padding: 0;
}

.offer-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.offer-includes li i {
    color: var(--success-color);
    min-width: 16px;
}

.urgency-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: var(--text-dark);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid var(--accent-color);
}

.urgency-box i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 8px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.countdown-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--error-color);
}

.countdown-label {
    font-size: 12px;
    color: var(--text-medium);
}

.countdown-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--error-color);
}

.btn-cta {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: flex;
}

.payment-methods {
    text-align: center;
    margin: 20px 0;
}

.payment-methods p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    color: var(--text-medium);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

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

.guarantee-icon i {
    color: var(--success-color);
    font-size: 32px;
}

.guarantee-text h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.guarantee-text p {
    color: var(--text-medium);
    margin: 0;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

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

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    min-width: 16px;
}

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

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

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

.faq-answer p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

/* Who Is It For */
.who-is-for {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
}

.who-column {
    padding: 24px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.who-yes {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: var(--success-color);
}

.who-no {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-color: var(--error-color);
}

.who-column h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    display: flex;
    align-items: center;
    gap: 10px;
}

.who-yes h3 i {
    color: var(--success-color);
}

.who-no h3 i {
    color: var(--error-color);
}

.who-column ul {
    list-style: none;
    padding: 0;
}

.who-column li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.5;
}

.who-column li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    min-width: 8px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

.final-cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--accent-color);
}

.final-guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 20px;
}

.final-guarantee i {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 4px 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-benefits {
        gap: 10px;
    }
    
    .benefit-item {
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 16px;
        right: 16px;
    }
    
    .image-badge {
        position: static;
        margin-top: 16px;
        padding: 12px;
        min-width: auto;
    }
    
    .problem-grid,
    .solution-grid,
    .bonus-grid,
    .testimonials-grid {
        gap: 16px;
    }
    
    .problem-card,
    .solution-card,
    .bonus-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .offer-content {
        gap: 30px;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .countdown {
        gap: 6px;
    }
    
    .countdown-value {
        font-size: 20px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .final-cta-features {
        gap: 12px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .currency {
        font-size: 20px;
    }
    
    .cents {
        font-size: 20px;
    }
    
    .offer-includes li {
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .offer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .who-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.p-4 {
    padding: 1rem;
}

.rounded {
    border-radius: var(--border-radius);
}

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

/* Print Styles */
@media print {
    .whatsapp-float,
    .back-to-top,
    .scroll-progress {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: 100%;
    }
    
    .btn {
        border: 2px solid var(--primary-color) !important;
        background: none !important;
        color: var(--primary-color) !important;
    }
}