/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(to bottom, transparent, #ffffff) #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    border: 0;
}

/* Accessibility improvements */
:focus {
    outline: 2px solid var(--primary-600);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-600);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Variáveis CSS */
:root {
    --primary-50: #fff1f1;
    --primary-100: #ffe1e1;
    --primary-200: #ffc7c7;
    --primary-300: #ffa0a0;
    --primary-400: #ff6b6b;
    --primary-500: #ff3e3e;
    --primary-600: #ff1f1f;
    --primary-700: #e60000;
    --primary-800: #bd0000;
    --primary-900: #9b0000;
    --primary-950: #560000;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Utilitários */
.hidden {
    display: none !important;
}

.text-primary {
    color: var(--primary-600);
}

/* Container */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding: 0 2rem;
    }
}

/* Section padding */
.section-padding {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section-padding {
        padding: 4rem 0;
    }
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
}

/* Section title */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-600);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-700);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--primary-600);
    color: var(--primary-600);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-600);
    color: white;
}

.btn-secondary {
    background-color: var(--gray-600);
    color: white;
    border: 2px solid var(--gray-600);
}

.btn-secondary:hover {
    background-color: var(--gray-700);
    border-color: var(--gray-700);
    transform: translateY(-1px);
}

.btn-large {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.btn-full {
    width: 100%;
}

@media (min-width: 768px) {
    .btn-full {
        width: auto;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-600);
}

/* Mobile menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--gray-800);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 60;
    position: relative;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 55;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
}

.mobile-nav-list {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: white;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-nav-list {
    transform: translateX(0);
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list .mobile-cta:first-of-type {
    margin-top: 1.5rem;
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-600);
    padding-left: 0.5rem;
}

.mobile-cta {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

.mobile-cta.btn {
    display: block;
    width: 100%;
}

/* Header button responsiveness */
@media (max-width: 1024px) {
    .header-buttons {
        gap: 0.5rem;
    }
    
    .header-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .header-buttons {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,62,62,0.1) 0%, rgba(255,255,255,1) 100%);
    padding-top: 5rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-badges {
        justify-content: flex-start;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid var(--primary-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-700);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-400);
}

.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 250px;
    animation: float 3s ease-in-out infinite;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .phone-mockup {
        max-width: 280px;
    }
}

@media (min-width: 1024px) {
    .phone-mockup {
        max-width: 320px;
    }
}

.phone-img {
    width: 100%;
    height: auto;
}

.phone-screen {
    position: absolute;
    top: 22%;
    left: 16%;
    width: 68%;
    height: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-50);
    border-radius: 0.375rem;
}

.qr-container {
    width: 75%;
    aspect-ratio: 1;
    background-color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code {
    width: 100%;
    height: auto;
    border-radius: 0.375rem;
}

.qr-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, rgba(255,62,62,0.05) 0%, rgba(255,255,255,1) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.benefit-card:hover {
    border-color: var(--primary-500);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    margin-bottom: 1rem;
    color: var(--primary-600);
}

.benefit-icon i {
    width: 2.5rem;
    height: 2.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--gray-600);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1rem;
    color: var(--primary-600);
}

.feature-icon i {
    width: 2.5rem;
    height: 2.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--gray-600);
}

/* WebView Section */
.webview {
    background: linear-gradient(135deg, rgba(255,62,62,0.05) 0%, rgba(255,255,255,1) 100%);
}

.webview-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .webview-content {
        gap: 3rem;
    }
}

.webview-info {
    width: 100%;
    max-width: 64rem;
}

.info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .info-card {
        padding: 2rem;
    }
}

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

@media (min-width: 768px) {
    .info-title {
        font-size: 1.5rem;
    }
}

.info-description {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .info-description {
        font-size: 1.125rem;
    }
}

.advantages-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--gray-800);
}

@media (min-width: 768px) {
    .advantages-title {
        font-size: 1.25rem;
    }
}

.advantages-list {
    list-style: none;
    margin-bottom: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .advantage-item {
        font-size: 1rem;
    }
}

.advantage-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--primary-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    margin-right: 0.75rem;
}

.info-note {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-style: italic;
}

@media (min-width: 768px) {
    .info-note {
        font-size: 1.125rem;
    }
}

.webview-demo {
    width: 100%;
    max-width: 64rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .webview-demo {
        margin-top: 3rem;
    }
}

.browser-mockup {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

@media (min-width: 640px) {
    .browser-mockup {
        min-height: 500px;
    }
}

@media (min-width: 768px) {
    .browser-mockup {
        min-height: 600px;
    }
}

.browser-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

.browser-content {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 60px);
    overflow: hidden;
}

.loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(243, 244, 246, 0.75);
    z-index: 10;
}

.spinner {
    width: 3rem;
    height: 3rem;
    border: 2px solid var(--gray-200);
    border-top: 2px solid var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 10px 10px;
}

@media (min-width: 640px) {
    .demo-iframe {
        min-height: 450px;
    }
}

@media (min-width: 768px) {
    .demo-iframe {
        min-height: 500px;
    }
}

.demo-caption {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 500;
}

.demo-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,62,62,0.05) 100%);
}

.testimonials .container-custom {
    max-width: 1280px;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 3rem;
    scroll-behavior: smooth;
    position: relative;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        overflow: visible;
        scroll-snap-type: none;
        padding-bottom: 1rem;
    }
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--gray-100);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.95);
}

.testimonial-card.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

@media (min-width: 768px) {
    .testimonial-card {
        display: flex;
        opacity: 1;
        transform: scale(1);
        width: auto;
        max-width: none;
        text-align: left;
        align-items: flex-start;
    }
    
    .testimonial-card.active {
        transform: scale(1);
    }
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .testimonial-card:hover {
        transform: translateY(-4px);
    }
}

.quote-icon {
    margin-bottom: 1rem;
    color: var(--primary-600);
    opacity: 0.2;
}

.testimonial-quote {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .testimonial-author {
        flex-direction: row;
        gap: 0;
    }
}

.author-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .author-avatar {
        width: 3rem;
        height: 3rem;
    }
}

.author-info {
    margin-left: 1rem;
}

.author-name {
    font-weight: 700;
}

.author-position {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Pricing Section */
.pricing {
    background-color: var(--gray-50);
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--gray-700);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .pricing-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .pricing-subtitle {
        font-size: 1.25rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pricing-grid {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-500);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-500);
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-header {
        padding: 2rem;
    }
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .plan-name {
        font-size: 1.5rem;
    }
}

.plan-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: end;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .price {
        font-size: 2.5rem;
    }
}

.period {
    color: var(--gray-500);
    margin-left: 0.25rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .plan-features {
        padding: 0 2rem;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.check-icon {
    color: var(--primary-500);
    margin-top: 0.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.plan-cta {
    margin: 0 1.5rem 1.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .plan-cta {
        margin: 0 2rem 2rem;
    }
}

.plan-cta:hover {
    transform: scale(1.03);
}

.popular .plan-cta {
    background-color: var(--primary-600);
    color: white;
    border: none;
}

.popular .plan-cta:hover {
    background-color: var(--primary-700);
}

/* Plan Comparison */
.plan-comparison {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gray-200);
}

.comparison-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: var(--gray-50);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    color: var(--gray-700);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    padding-left: 1.5rem;
    color: var(--gray-800);
}

.table-check {
    color: var(--primary-600);
    width: 24px;
    height: 24px;
}

.table-x {
    color: var(--gray-400);
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .comparison-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .comparison-title {
        font-size: 1.4rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding-left: 1rem;
    }
}

@media (max-width: 640px) {
    .comparison-title {
        font-size: 1.25rem;
        padding: 0 1rem;
    }

    .comparison-table {
        min-width: 500px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.625rem 0.375rem;
        font-size: 0.8rem;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding-left: 0.75rem;
    }
}

/* FAQ Section */
.faq {
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-300);
}

.faq-item.active {
    border-color: var(--primary-500);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-600);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .faq-item {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* CTA Section */
.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,62,62,0.1) 0%, rgba(255,255,255,1) 100%);
}

.cta-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.bg-line {
    position: absolute;
    background-color: var(--primary-600);
    animation: float 3s ease-in-out infinite;
}

.bg-line.horizontal {
    height: 1px;
    width: 100%;
    left: 0;
}

.bg-line.vertical {
    width: 1px;
    height: 100%;
    top: 0;
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .container-custom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-badges {
        gap: 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding: 2rem 0;
    }
    
    .benefits-grid,
    .features-grid {
        gap: 1.5rem;
    }
    
    .benefit-card,
    .feature-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .demo-iframe {
        min-height: 300px !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}/*
 Advanced Features Section */
.advanced-features {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.advanced-features::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.advanced-feature {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advanced-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advanced-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.advanced-feature:hover::before {
    transform: scaleX(1);
}

.advanced-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px 0 rgba(var(--primary-rgb), 0.3);
}

.advanced-icon i {
    color: white;
    width: 32px;
    height: 32px;
}

.advanced-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.advanced-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.advanced-benefits {
    list-style: none;
    padding: 0;
}

.advanced-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.9rem;
}

.advanced-benefits li::before {
    content: '✓';
    color: var(--primary-600);
    font-weight: bold;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.advanced-cta {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-description {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .advanced-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advanced-feature {
        padding: 1.5rem;
    }
    
    .advanced-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .advanced-grid {
        gap: 1rem;
    }
    
    .advanced-feature {
        padding: 1.25rem;
    }
    
    .advanced-icon {
        width: 56px;
        height: 56px;
    }
    
    .advanced-icon i {
        width: 28px;
        height: 28px;
    }
}/* QR Manager Section */
.qr-manager-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.qr-manager-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 62, 62, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 62, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.qr-manager-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.qr-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qr-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.qr-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-200);
}

.qr-feature-card:hover::before {
    transform: scaleX(1);
}

.qr-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px 0 rgba(255, 62, 62, 0.3);
}

.qr-feature-icon i {
    color: white;
    width: 32px;
    height: 32px;
}

.qr-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.qr-feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .qr-manager-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .qr-manager-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qr-feature-card {
        padding: 1.5rem;
    }

    .qr-feature-title {
        font-size: 1.1rem;
    }

    .qr-feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .qr-feature-card {
        padding: 1.25rem;
    }

    .qr-feature-icon {
        width: 56px;
        height: 56px;
    }

    .qr-feature-icon i {
        width: 28px;
        height: 28px;
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::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="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff !important;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }

    .stat-item {
        padding: 1.25rem;
    }
}

@media (max-width: 640px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* MEGA PROMOÇÃO Section - ANTIGO (IGNORAR) */
.mega-promo {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 50%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.mega-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 62, 62, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.promo-banner {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(255, 62, 62, 0.2);
    border: 3px solid var(--primary-500);
}

.promo-badge-container {
    text-align: center;
    margin-bottom: 2rem;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 62, 62, 0.4);
}

.promo-badge.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 62, 62, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 62, 62, 0.6);
    }
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.promo-text {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gray-900);
    text-align: center;
}

@media (min-width: 768px) {
    .promo-title {
        font-size: 3rem;
    }
}

.promo-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    margin-bottom: 0.5rem;
}

.promo-description {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.promo-price-old {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 1rem;
}

.promo-price-box {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border: 2px solid var(--primary-500);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.promo-price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-price-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-600);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.promo-price-installment {
    display: block;
    font-size: 1rem;
    color: var(--gray-600);
}

.promo-price-pix {
    display: block;
    font-size: 1rem;
    color: #00a859;
    font-weight: 700;
    margin-top: 0.5rem;
}

.promo-bonus {
    background: linear-gradient(135deg, #fff9e6, #ffe6b3);
    border: 2px solid #ffb800;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}

.bonus-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.bonus-text {
    font-size: 1.125rem;
    color: var(--gray-800);
    line-height: 1.4;
}

.bonus-text strong {
    display: block;
    font-size: 1.25rem;
    color: #cc7a00;
    margin-bottom: 0.25rem;
}

.promo-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .promo-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promo-benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    text-align: left;
}

.promo-benefit-item i {
    color: var(--primary-600);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.promo-cta-group {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-secondary-promo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 62, 62, 0.15);
}

.btn-secondary-promo:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 62, 0.25);
}

.btn-secondary-promo i {
    width: 20px;
    height: 20px;
}

.btn-promo {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-promo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.btn-promo i {
    width: 24px;
    height: 24px;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.promo-guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-guarantee i {
    color: var(--primary-600);
    width: 16px;
    height: 16px;
}

.promo-visual {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 0;
}

.promo-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
}

.comparison-before,
.comparison-after {
    position: relative;
}

.comparison-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.label-before {
    background: var(--gray-600);
    color: white;
}

.label-after {
    background: var(--primary-600);
    color: white;
}

.comparison-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 500px;
}

.comparison-arrow {
    color: var(--primary-600);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.comparison-arrow i {
    width: 48px;
    height: 48px;
    stroke-width: 3;
}

.promo-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
}

.stat-mini {
    text-align: center;
}

.stat-mini-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 0.25rem;
}

.stat-mini-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-urgency {
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border: 2px solid #ffc107;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.promo-urgency i {
    color: #ff6b00;
    width: 24px;
    height: 24px;
}

.promo-urgency strong {
    color: var(--primary-700);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-banner {
        padding: 2rem 1.5rem;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-price-main {
        font-size: 2.5rem;
    }

    .promo-comparison {
        gap: 1rem;
        padding: 0.5rem;
    }

    .comparison-arrow {
        margin: 0.5rem auto;
    }

    .comparison-image {
        min-height: 300px;
        max-width: 100%;
        padding: 1rem;
    }

    .comparison-image img {
        max-height: 400px;
    }

    .promo-benefits {
        grid-template-columns: 1fr;
    }

    .btn-promo {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 1.25rem 1.5rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .promo-stats-mini {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .promo-cta-group {
        width: 100%;
    }

    .btn-secondary-promo {
        width: 100%;
        font-size: 0.875rem;
        padding: 0.875rem 1.5rem;
    }

    .promo-urgency {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .promo-bonus {
        flex-direction: column;
        text-align: center;
    }

    .bonus-icon {
        font-size: 2.5rem;
    }
}

/* Promo Navigation Link */
.promo-nav-link {
    color: var(--primary-600) !important;
    font-weight: 700;
    position: relative;
    animation: glow-text 2s ease-in-out infinite;
    display: inline-block;
    line-height: 1.5;
}

.promo-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-700));
    border-radius: 2px;
}

@keyframes glow-text {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.promo-nav-link:hover {
    transform: scale(1.05);
    color: var(--primary-700) !important;
}


/* ========================================
   MEGA PROMOCAO - NOVA VERSAO LIMPA
   ======================================== */

.promo-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 4rem 0;
    width: 100%;
}

.promo-section .container-custom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(255, 62, 62, 0.15);
    border: 2px solid var(--primary-500);
}

/* Badge de Oferta */
.promo-badge-top {
    text-align: center;
    margin-bottom: 2rem;
}

.badge-fire {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 62, 62, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Título */
.promo-main-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.title-red {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-600);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.title-black {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

/* Descrição */
.promo-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 1rem;
}

/* Box de Preço */
.price-box {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border: 2px solid var(--primary-500);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-600);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-pix {
    font-size: 1rem;
    color: #00a859;
    font-weight: 700;
}

/* Lista de Benefícios */
.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.benefit-item i {
    color: var(--primary-600);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Box de Bônus */
.bonus-box {
    background: linear-gradient(135deg, #fff9e6, #ffe6b3);
    border: 2px solid #ffb800;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bonus-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #cc7a00;
    margin-bottom: 0.25rem;
}

.bonus-subtitle {
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* Botões CTA */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    width: 24px;
    height: 24px;
}

.btn-details {
    background: white;
    color: var(--primary-600);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-600);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.btn-details i {
    width: 20px;
    height: 20px;
}

/* Garantia */
.guarantee-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.guarantee-text i {
    color: var(--primary-600);
    width: 16px;
    height: 16px;
}

/* Imagens Antes e Depois */
.images-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.image-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.image-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.label-before {
    background: var(--gray-600);
    color: white;
}

.label-after {
    background: var(--primary-600);
    color: white;
}

.comparison-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: block;
}

.arrow-down {
    color: var(--primary-600);
    font-size: 2.5rem;
}

.arrow-down i {
    width: 40px;
    height: 40px;
    stroke-width: 3;
}

/* Mini Stats */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Urgência */
.urgency-box {
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.urgency-box i {
    color: #ff6b00;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.urgency-box strong {
    color: var(--primary-700);
}

/* Responsivo */
@media (max-width: 1024px) {
    .promo-container {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .promo-container {
        padding: 2rem 1.5rem;
    }

    .title-red {
        font-size: 1.75rem;
    }

    .title-black {
        font-size: 1.25rem;
    }

    .promo-desc {
        font-size: 1rem;
    }

    .price-value {
        font-size: 2.75rem;
    }

    .btn-whatsapp {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        white-space: normal;
        line-height: 1.4;
    }

    .btn-details {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }

    .mini-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .urgency-box {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.875rem;
    }

    .image-box {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .promo-container {
        padding: 1.5rem 1rem;
    }

    .title-red {
        font-size: 1.5rem;
    }

    .title-black {
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 2.25rem;
    }

    .price-box {
        padding: 1.5rem;
    }

    .benefits-list {
        gap: 0.5rem;
    }

    .benefit-item {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .bonus-box {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .bonus-icon {
        font-size: 2.5rem;
    }

    .bonus-title {
        font-size: 1.1rem;
    }

    .bonus-subtitle {
        font-size: 0.875rem;
    }

    .btn-whatsapp {
        font-size: 0.875rem;
        padding: 0.875rem 1.25rem;
    }

    .btn-details {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
    }
}


/* Dots de navegação para testimonials */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.testimonial-dot:hover {
    background: var(--gray-400);
    transform: scale(1.1);
}

.testimonial-dot.active {
    background: var(--primary-600);
    width: 40px;
    border-radius: 7px;
    border-color: var(--primary-600);
}

@media (min-width: 768px) {
    .testimonials-dots {
        display: none;
    }
}

/* Melhorias adicionais de responsividade */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .testimonial-card {
        max-width: 500px;
        padding: 2rem 1.5rem;
    }

    .benefit-title,
    .feature-title {
        font-size: 1.1rem;
    }

    .benefit-description,
    .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonial-card {
        max-width: 450px;
        padding: 1.75rem 1.25rem;
    }

    .testimonial-quote {
        font-size: 0.95rem;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-position {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container-custom {
        padding: 0 0.75rem;
    }

    .hero-text {
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .testimonial-card {
        max-width: 400px;
        padding: 1.5rem 1rem;
    }

    .benefit-icon i,
    .feature-icon i {
        width: 2rem;
        height: 2rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}
