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

:root {
    /* Cores do Sabido */
    --brand-1: hsl(169.78deg 70.05% 40.09%);
    --brand-2: hsl(220.71deg 50% 10.98%);
    --ink: hsl(220.71deg 50% 10.98%);
    --ink-1: hsl(220deg 20% 25%);
    --ink-2: hsl(220deg 15% 45%);
    --surface: hsl(210deg 20% 98%);
    
    /* Black Friday */
    --bf-black: #0a0a0a;
    --bf-dark: #1a1a1a;
    --bf-darker: #0f0f0f;
    
    /* Typography */
    --font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    background: var(--bf-black);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Timer Bar */
.timer-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--brand-1);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(23, 162, 184, 0.3);
}

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

.timer-text {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.timer-display {
    font-size: 18px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 16px;
    border-radius: 8px;
}

/* Hero */
.hero {
    padding: 140px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bf-black) 0%, var(--bf-dark) 100%);
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 100vw);
    max-width: 100%;
    height: 600px;
    background: radial-gradient(circle, var(--brand-1) 0%, transparent 70%);
    opacity: 0.08;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: var(--brand-1);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-1), #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-problems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-icon {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
}

.problem-text {
    font-size: 14px;
    font-weight: 500;
}

/* Logo */
.hero-logo {
    margin-bottom: 32px;
    text-align: center;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .logo-img {
        height: 80px;
    }
}

/* Price Box - Novo Design */
.price-box {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 3px solid var(--brand-1);
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 40px;
    box-shadow: 0 20px 60px rgba(23, 162, 184, 0.3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-1), #4fd1c5, var(--brand-1));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

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

.price-badge-top {
    display: inline-block;
    background: var(--brand-1);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 24px;
    text-align: center;
}

.price-comparison-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.price-old-hero,
.price-new-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    width: 100%;
}

.price-label-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-strike-hero {
    font-size: 32px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.price-discount-badge {
    background: #ef4444;
    color: white;
    padding: 12px 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(239, 68, 68, 0.6);
    }
}

.discount-text {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.price-value-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-1);
}

.price-value-hero {
    font-size: 56px;
    font-weight: 900;
    color: var(--brand-1);
    line-height: 1;
}

.price-period-hero {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.price-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 8px;
}

/* Responsive Price Box */
@media (max-width: 640px) {
    .price-comparison-hero {
        gap: 20px;
    }
    
    .price-discount-badge {
        width: 70px;
        height: 70px;
    }
    
    .discount-text {
        font-size: 18px;
    }
    
    .price-value-hero {
        font-size: 48px;
    }
    
    .price-strike-hero {
        font-size: 28px;
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--brand-1);
    color: white;
    padding: 18px 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(23, 162, 184, 0.4);
    background: #1ba89c;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.hero-guarantee svg {
    width: 16px;
    height: 16px;
    color: var(--brand-1);
}

/* Problem Section */
.problem-section {
    padding: 80px 24px;
    background: var(--bf-dark);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--brand-1), #4fd1c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: linear-gradient(135deg, var(--bf-darker), var(--bf-black));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.problem-number {
    width: 48px;
    height: 48px;
    background: var(--brand-1);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.problem-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 80px 24px;
    background: var(--bf-black);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.solution-card {
    background: linear-gradient(135deg, var(--bf-dark), var(--bf-darker));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.solution-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-1);
    margin-bottom: 20px;
    stroke-width: 1.5;
}

.solution-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.solution-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 24px;
    background: var(--bf-dark);
}

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

.testimonial-card {
    background: linear-gradient(135deg, var(--bf-darker), var(--bf-black));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-1), #4fd1c5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits */
.benefits {
    padding: 80px 24px;
    background: var(--bf-black);
}

.test-free-banner {
    max-width: 800px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.15), rgba(79, 209, 197, 0.15));
    border: 2px solid var(--brand-1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(23, 162, 184, 0.2);
}

.banner-icon {
    width: 32px;
    height: 32px;
    color: var(--brand-1);
    flex-shrink: 0;
}

.banner-content {
    flex: 1;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.banner-content strong {
    color: var(--brand-1);
    font-weight: 700;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, var(--bf-dark), var(--bf-darker));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: var(--brand-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

/* Final CTA */
.final-cta {
    padding: 80px 24px;
    background: var(--bf-dark);
}

.cta-box {
    background: linear-gradient(135deg, var(--bf-darker), var(--bf-black));
    border: 2px solid var(--brand-1);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(23, 162, 184, 0.3);
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-price {
    margin-bottom: 40px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.price-from {
    font-size: 20px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.price-arrow {
    font-size: 24px;
    color: var(--brand-1);
}

.price-to {
    font-size: 40px;
    font-weight: 900;
    color: var(--brand-1);
}

.price-economy {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-button-large {
    display: inline-block;
    background: var(--brand-1);
    color: white;
    padding: 20px 60px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
    border: none;
    cursor: pointer;
    margin-bottom: 32px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(23, 162, 184, 0.4);
    background: #1ba89c;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.feature-item svg {
    width: 16px;
    height: 16px;
    color: var(--brand-1);
}

.cta-timer {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 16px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.timer-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 8px;
}

.timer-label svg {
    width: 20px;
    height: 20px;
    color: #ef4444;
}

.timer-final {
    font-size: 32px;
    font-weight: 900;
    color: var(--brand-1);
}

/* FAQ */
.faq {
    padding: 80px 24px;
    background: var(--bf-black);
}

.faq-support-banner {
    max-width: 800px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.15), rgba(79, 209, 197, 0.15));
    border: 2px solid var(--brand-1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(23, 162, 184, 0.2);
}

.support-icon {
    width: 40px;
    height: 40px;
    color: var(--brand-1);
    flex-shrink: 0;
}

.support-content {
    flex: 1;
}

.support-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.support-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-1);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(23, 162, 184, 0.1);
}

.support-email:hover {
    background: rgba(23, 162, 184, 0.2);
    transform: translateX(4px);
}

.support-email svg {
    width: 20px;
    height: 20px;
}

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

.faq-item {
    background: linear-gradient(135deg, var(--bf-dark), var(--bf-darker));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-1);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    padding: 60px 24px 120px;
    background: var(--bf-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--brand-1);
    margin-bottom: 8px;
}

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

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-1);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(23, 162, 184, 0.1);
}

.footer-email:hover {
    background: rgba(23, 162, 184, 0.2);
    transform: translateY(-2px);
}

.footer-email svg {
    width: 16px;
    height: 16px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-1);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* How It Works */
.how-it-works {
    padding: 80px 24px;
    background: var(--bf-black);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.step-card {
    background: linear-gradient(135deg, var(--bf-dark), var(--bf-darker));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--brand-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
}

.step-icon {
    width: 56px;
    height: 56px;
    color: var(--brand-1);
    margin: 0 auto 20px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, var(--bf-dark), var(--bf-darker));
    border: 2px solid var(--brand-1);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-1);
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brand-1);
}

.highlight-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Who Section */
.who-section {
    padding: 80px 24px;
    background: var(--bf-dark);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.who-card {
    background: linear-gradient(135deg, var(--bf-darker), var(--bf-black));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.who-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.who-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-1);
    margin: 0 auto 20px;
}

.who-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.who-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 24px;
    background: var(--bf-black);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.comparison-without {
    background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.comparison-with {
    background: linear-gradient(135deg, #1a2a2a, #0a1a1a);
    border: 2px solid var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.comparison-icon-bad {
    width: 32px;
    height: 32px;
    color: #ef4444;
}

.comparison-icon-good {
    width: 32px;
    height: 32px;
    color: var(--brand-1);
}

.comparison-title {
    font-size: 22px;
    font-weight: 700;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.comparison-list li::before {
    content: '•';
    color: var(--brand-1);
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.comparison-without .comparison-list li::before {
    color: #ef4444;
}

/* Social Proof Numbers */
.social-proof-numbers {
    padding: 60px 24px;
    background: var(--bf-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    background: linear-gradient(135deg, var(--bf-darker), var(--bf-black));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--brand-1);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Objections Section */
.objections-section {
    padding: 80px 24px;
    background: var(--bf-black);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.objection-card {
    background: linear-gradient(135deg, var(--bf-dark), var(--bf-darker));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.objection-card:hover {
    border-color: var(--brand-1);
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.2);
}

.objection-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-1);
    margin-bottom: 12px;
    font-style: italic;
}

.objection-answer {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Transformation Section */
.transformation-section {
    padding: 80px 24px;
    background: var(--bf-dark);
}

.transformation-box {
    background: linear-gradient(135deg, var(--bf-darker), var(--bf-black));
    border: 2px solid var(--brand-1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(23, 162, 184, 0.3);
}

.transformation-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
}

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

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

.transformation-icon {
    width: 40px;
    height: 40px;
    color: var(--brand-1);
}

.transformation-item p {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.transformation-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Urgency Banner */
.urgency-banner {
    max-width: 700px;
    margin: 32px auto 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
    border: 2px solid #ef4444;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #ef4444;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        border-color: #dc2626;
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.urgency-icon {
    width: 24px;
    height: 24px;
    color: #ef4444;
    flex-shrink: 0;
}

.urgency-text {
    flex: 1;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.urgency-text strong {
    color: #ef4444;
    font-weight: 700;
}

/* Guarantee Hero */
.guarantee-hero {
    padding: 60px 24px;
    background: var(--bf-dark);
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bf-darker), var(--bf-black));
    border: 2px solid var(--brand-1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 40px rgba(23, 162, 184, 0.3);
}

.guarantee-shield {
    width: 64px;
    height: 64px;
    color: var(--brand-1);
    flex-shrink: 0;
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--brand-1);
    margin-bottom: 12px;
}

.guarantee-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.guarantee-text strong {
    color: white;
    font-weight: 700;
}

/* Social Proof Header */
.social-proof-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-proof-title {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Users Proof */
.users-proof {
    margin-top: 40px;
    text-align: center;
}

.users-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -8px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-1), #4fd1c5);
    border: 3px solid var(--bf-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.users-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.users-text strong {
    color: var(--brand-1);
    font-weight: 700;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, var(--brand-1), #1ba89c);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: bottom 0.3s ease;
    box-sizing: border-box;
}

.floating-cta.visible {
    bottom: 0;
}

.floating-cta-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.floating-cta-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.floating-cta-button {
    background: white;
    color: var(--brand-1);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .timer-content {
        font-size: 12px;
        gap: 12px;
    }
    
    .timer-display {
        font-size: 16px;
        padding: 4px 12px;
    }
    
    .hero {
        padding: 120px 16px 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .problem-grid,
    .solution-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card,
    .solution-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .footer {
        padding: 40px 16px 100px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .steps-grid,
    .who-grid,
    .comparison-grid,
    .stats-grid,
    .objections-grid,
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .transformation-box {
        padding: 40px 24px;
    }
    
    .test-free-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .urgency-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .guarantee-title {
        font-size: 24px;
    }
    
    .guarantee-text {
        font-size: 16px;
    }
    
    .floating-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 0 12px;
    }
    
    .floating-cta-button {
        width: calc(100% - 24px);
        max-width: calc(100vw - 48px);
        white-space: normal;
        padding: 12px 20px;
    }
    
    .floating-cta-text {
        font-size: 14px;
        padding: 0 12px;
    }
    
    .faq-support-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .support-email {
        font-size: 16px;
    }
    
    .footer-email {
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .price-value-hero {
        font-size: 42px;
    }
    
    .price-box {
        padding: 32px 20px;
        width: calc(100% - 32px);
        max-width: calc(100vw - 32px);
        margin: 0 auto 40px;
    }
    
    .price-comparison-hero {
        gap: 16px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 100px 12px 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .problem-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .problem-icon {
        width: 18px;
        height: 18px;
    }
    
    .price-box {
        padding: 24px 16px;
        width: calc(100% - 24px);
        max-width: calc(100vw - 24px);
        margin: 0 auto 40px;
    }
    
    .price-value-hero {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-button {
        padding: 16px 24px;
        font-size: 15px;
        width: calc(100% - 32px);
        max-width: calc(100vw - 32px);
        margin: 0 auto;
        display: block;
    }
    
    .cta-button-large {
        padding: 18px 32px;
        font-size: 18px;
        width: calc(100% - 32px);
        max-width: calc(100vw - 32px);
        margin: 0 auto 32px;
        display: block;
    }
    
    .floating-cta-button {
        padding: 12px 24px;
        font-size: 14px;
        white-space: normal;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .problem-card,
    .solution-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .footer {
        padding: 32px 12px 120px;
    }
    
    .footer-bottom {
        padding-top: 24px;
        margin-top: 24px;
    }
    
    .footer-legal {
        gap: 12px;
    }
}

/* LGPD Modal */
.lgpd-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

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

.lgpd-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.lgpd-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.lgpd-close:hover {
    background: #f5f5f5;
    color: #333;
}

.lgpd-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.lgpd-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.lgpd-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 24px 0 12px;
}

.lgpd-body h3:first-child {
    margin-top: 0;
}

.lgpd-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.lgpd-body ul {
    margin: 12px 0 16px 20px;
}

.lgpd-body li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.lgpd-body strong {
    color: #1a1a1a;
    font-weight: 600;
}

.lgpd-footer {
    padding: 20px 30px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
}

.lgpd-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.lgpd-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    flex: 1;
}

.cookie-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.cookie-text a {
    color: #10b981;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #059669;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cookie-reject {
    background: white;
    color: #666;
    border: 2px solid #e5e5e5;
}

.cookie-reject:hover {
    border-color: #ccc;
    color: #333;
}

.footer-legal {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #10b981;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #059669;
    text-decoration: underline;
}

.footer-legal span {
    color: #666;
}

@media (max-width: 768px) {
    .lgpd-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .lgpd-title {
        font-size: 22px;
        padding: 24px 24px 16px;
        padding-right: 60px;
    }

    .lgpd-body {
        padding: 20px 24px;
    }

    .lgpd-body h3 {
        font-size: 18px;
    }

    .lgpd-body p,
    .lgpd-body li {
        font-size: 14px;
    }

    .cookie-banner {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px 32px;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
        padding: 14px 24px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .footer-legal span {
        display: none;
    }
}
