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

/* Assegura que mídias nunca ultrapassem sua área */
img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* evita scroll horizontal global */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Evita quebra de layout por palavras longas em títulos */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title {
    overflow-wrap: anywhere;
    word-break: break-word;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #e91e63, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-outline:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Evita que filhos do header forcem largura maior que o viewport */
.nav-container>* {
    min-width: 0;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.language-selector select option {
    background: #1a1a2e;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}


/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 76px 0 0px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 2rem;
        text-align: center;
    }
}

/* Permite que filhos de grids flexionem sem forçar largura maior */
.detailed-feature-content>*,
.benefits-content>*,
.features-grid>*,
.integrations-grid>*,
.footer-content>*,
.plans-grid>* {
    min-width: 0;
}

/* Permite que conteúdo interno da grid encolha sem causar overflow */
.hero-container>* {
    min-width: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Badges Carousel */
.hero-badges-carousel {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
    margin: 16px 0;
    position: relative;
}

.hero-badges-carousel::before,
.hero-badges-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 1;
}

.hero-badges-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(15, 15, 35, 0.95), rgba(15, 15, 35, 0));
}

.hero-badges-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(15, 15, 35, 0.95), rgba(15, 15, 35, 0));
}

.hero-badges-track {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: hero-badges-scroll 28s linear infinite;
    will-change: transform;
}

.hero-badges-carousel .badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

@keyframes hero-badges-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-badges-carousel {
        padding: 6px 0;
        margin-top: 10px;
    }

    .hero-badges-track {
        gap: 10px;
        animation-duration: 22s;
    }

    .hero-badges-carousel .badge {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-badges-track {
        animation: none;
    }
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    max-width: 250px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.chat-bubble-1 {
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
}

.chat-bubble-2 {
    top: 40%;
    right: 5%;
    background: rgba(255, 255, 255, 0.15);
}

.chat-bubble-3 {
    bottom: 10%;
    left: 15%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
}

.chat-bubble p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 22px;
    /* mais compacto para caber mais cards no carrossel */
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

z-index: 0;
/* Adicionado para garantir que o ícone não vaze */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(63, 81, 181, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    /* reduzido para compacidade */
    /* Aumentado o margin-bottom */
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


/* Social Proof Section */
.social-proof {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(233, 30, 99, 0.3);
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.author-info h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.75);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.stat-item h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #e91e63, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Social Proof */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .social-proof {
        padding: 10px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 18px;
    }
}

/* Demo Section */
.demo-section {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.demo-container {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.demo-container .sl-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.demo-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* How It Works Section */
.how-it-works {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::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="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works .section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #e91e63, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.step-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    width: 36px;
    height: 36px;
    stroke: #e91e63;
    filter: drop-shadow(0 4px 10px rgba(233, 30, 99, 0.3));
}

.step-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
    margin: 0 10px;
}

.step-arrow svg {
    width: 22px;
    height: 22px;
    stroke: #e91e63;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.3));
}

/* Navegação mobile - escondida por padrão */
.mobile-nav-arrows,
.progress-indicators {
    display: none;
}

/* Estilos para Desktop (min-width: 769px) - Manter layout original */
@media (min-width: 769px) {
    /* Esconder elementos do accordion no desktop */
    .accordion-header {
        display: none !important;
    }

    .accordion-content {
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        padding: 0 !important;
    }

    /* Manter layout original no desktop */
    .steps-container.accordion-container {
        flex-direction: row !important;
        gap: 18px !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .step-item.accordion-item {
        min-width: 280px !important;
        max-width: 350px !important;
        width: auto !important;
        margin: 0 !important;
        padding: 18px 16px !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(20px) !important;
        border-radius: 18px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s ease !important;
    }

    .step-item.accordion-item:hover {
        transform: translateY(-10px) !important;
        box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2) !important;
        border-color: rgba(233, 30, 99, 0.3) !important;
    }

    /* Mostrar setas no desktop */
    .step-arrow {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #e91e63 !important;
        margin: 0 10px !important;
    }

    /* Manter elementos originais visíveis */
    .step-number {
        position: absolute !important;
        top: -15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }

    .step-icon {
        margin-bottom: 16px !important;
        display: flex !important;
        justify-content: center !important;
    }

    .step-icon svg {
        width: 36px !important;
        height: 36px !important;
    }

    .step-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .step-item p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
    }
}
@media (max-width: 1200px) {
    .steps-container {
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

/* Estilos para o Accordion (Collapse) no Mobile */
@media (max-width: 768px) {
    /* Reset do layout horizontal para vertical */
    .steps-container.accordion-container {
        flex-direction: column;
        gap: 12px;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
        margin: 0;
    }

    .step-item.accordion-item {
        min-width: auto;
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    /* Header do Accordion */
    .accordion-header {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .accordion-header:hover {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
    }

    .accordion-header .step-number {
        position: static;
        transform: none;
        margin-right: 16px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .accordion-title {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .accordion-title h3 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .accordion-icon {
        transition: transform 0.3s ease;
        color: #e91e63;
        margin-left: 12px;
    }

    .accordion-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Estado ativo do header */
    .accordion-item.active .accordion-icon {
        transform: rotate(180deg);
    }

    /* Conteúdo do Accordion */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 20px;
        opacity: 0;
    }

    .accordion-item.active .accordion-content {
        max-height: 300px;
        padding: 0 20px 20px;
        opacity: 1;
    }

    .accordion-content .step-icon {
        margin: 16px 0;
        display: flex;
        justify-content: center;
    }

    .accordion-content .step-icon svg {
        width: 48px;
        height: 48px;
    }

    .accordion-content p {
        margin: 0;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Esconder elementos do layout horizontal */
    .step-arrow {
        display: none !important;
    }

    .mobile-nav-arrows,
    .progress-indicators {
        display: none !important;
    }

    /* Ajustes no hover */
    .accordion-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
        border-color: rgba(233, 30, 99, 0.3);
    }

    /* Primeiro item ativo por padrão */
    .accordion-item:first-child {
        margin-top: 0;
    }

    .accordion-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 40px 0;
    }

    .how-it-works .section-header {
        margin-bottom: 30px;
    }

    .how-it-works .section-title {
        font-size: 1.8rem;
    }

    .how-it-works .section-subtitle {
        font-size: 1rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 12px;
        overflow-x: visible;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: auto;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .steps-container::-webkit-scrollbar {
        display: none;
    }

    .step-item {
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 1;
        margin: 0;
        padding: 16px 14px;
        margin-bottom: 0;
        border-radius: 14px;
    }

    .accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .accordion-title {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .accordion-icon svg {
        transition: transform 0.25s ease;
    }

    .accordion-item .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .accordion-item.active .accordion-content {
        max-height: 400px;
    }

    .accordion-item.active .accordion-icon svg {
        transform: rotate(180deg);
    }

    .step-item:first-child {
        margin-left: 20px;
    }

    .step-item:last-child {
        margin-right: 20px;
    }

    .step-arrow {
        display: none;
    }

    .mobile-nav-arrows,
    .progress-indicators {
        display: none;
    }

    .step-icon svg {
        width: 40px;
        height: 40px;
    }

    .step-item h3 {
        font-size: 1.1rem;
    }

    /* Estilos do acordeão */
    .accordion-header {
        cursor: pointer;
    }

    .accordion-title h3 {
        margin: 0;
    }

    .accordion-content p {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .how-it-works .section-title {
        font-size: 1.6rem;
    }

    .step-item {
        padding: 20px 15px;
    }
}

/* Detailed Features Section */
.detailed-features {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.01);
}

.detailed-feature {
    margin-bottom: 80px;
    padding: 10px 0;
}

.detailed-feature:last-child {
    margin-bottom: 0;
}

.detailed-feature-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "text image";
    gap: 60px;
    align-items: start;
}

.detailed-feature-reverse .detailed-feature-content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image text";
}

.detailed-feature-reverse .detailed-feature-text {
    order: 2;
}

.detailed-feature-reverse .detailed-feature-image {
    order: 1;
}

.detailed-feature-text {
    grid-area: text;
}

.detailed-feature-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    background: linear-gradient(135deg, #e91e63, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detailed-feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.detailed-feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    grid-area: image;
}

.detailed-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.detailed-feature-image:hover img {
    transform: scale(1.05);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

/* Responsive Design for Detailed Features */
@media (max-width: 768px) {
    .detailed-features {
        padding: 10px 0;
    }

    .detailed-feature {
        margin-bottom: 60px;
        padding: 40px 0;
    }

    .detailed-feature-content {
        grid-template-columns: 1fr;
        grid-template-areas: "text"
            "image";
        gap: 28px;
        text-align: center;
        align-items: start;
    }

    /* Garante que a variante reverse também empilhe texto acima da imagem no mobile */
    .detailed-feature-reverse .detailed-feature-content {
        grid-template-columns: 1fr;
        grid-template-areas: "text"
            "image";
    }

    .detailed-feature-reverse .detailed-feature-text,
    .detailed-feature-reverse .detailed-feature-image {
        order: unset;
    }

    .detailed-feature-text h3 {
        font-size: 1.8rem;
    }

    .detailed-feature-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .detailed-feature .detailed-feature-text,
    .detailed-feature-reverse .detailed-feature-text {
        order: 1;
    }

    .detailed-feature .detailed-feature-image,
    .detailed-feature-reverse .detailed-feature-image {
        order: 2;
    }

    /* Centraliza e limita a largura da imagem no mobile para evitar overflow */
    .detailed-feature-image {
        justify-self: center;
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
    }

    .detailed-feature-image img {
        object-fit: contain;
    }

    /* Centraliza CTA dentro do bloco de texto em telas pequenas */
    .detailed-feature-text .cta-button {
        margin: 0 auto;
    }

    /* Limita largura de texto para melhor leitura no mobile */
    .detailed-feature-text {
        max-width: 680px;
        margin: 0 auto;
    }

    .benefit-item:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .detailed-feature-text h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Ajuste extra para imagens de seções detalhadas em telas muito pequenas */
    .detailed-feature-image {
        max-width: 420px;
    }
}

/* Benefits Section */
.benefits {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.02);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    min-height: 600px;
}

@media (max-width: 768px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.benefit-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.benefit-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #b0b0b0;
    margin: 0;
}

/* Stats Card - Redesigned */
.stats-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(233, 30, 99, 0.3);
}

.stats-header {
    text-align: center;
    margin-bottom: 1rem;
}

.stats-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    flex: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(233, 30, 99, 0.2);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(233, 30, 99, 0.3);
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.stats-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stats-header h3 {
        font-size: 1.3rem;
    }
}

/* Performance Chart Styles */
.performance-chart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.performance-chart:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateY(-5px);
}

.performance-chart h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    min-width: 100px;
    flex-shrink: 0;
}

.bar-progress {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 4px;
    transition: width 2s ease;
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.bar-value {
    color: #e91e63;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 50px;
    text-align: right;
}

/* ROI Calculator Styles */
.roi-calculator {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.roi-calculator:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateY(-5px);
}

.roi-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.roi-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.roi-header h4 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.roi-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roi-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-metric:last-child {
    border-bottom: none;
}

.roi-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.roi-value {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.roi-value.highlight {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 800;
}

/* Benefits Visual Layout */
.benefits-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    padding: 1rem;
}

@media (max-width: 768px) {
    .benefits-visual {
        padding: 0;
        gap: 1rem;
    }
}

/* Plans Section */
.plans {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
}

.plan-featured {
    border-color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
    transform: scale(1.05);
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: #b0b0b0;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    position: relative;
    padding-left: 2rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

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

/* Integrations Section */
.integrations {
    padding: 20px 0;
}

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

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

.integration-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.3);
}

.integration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.integration-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.integration-card p {
    color: #b0b0b0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
    padding: 20px 0;
    text-align: center;
}

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

.cta-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.03);
}

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

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
}

.faq-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.16);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #ffffff;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.faq-item.open .faq-toggle {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
    padding: 0 2px;
}

.faq-item.open .faq-answer {
    padding-top: 12px;
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    color: #b0b0b0;
}

.faq-question:focus-visible {
    outline: 2px solid rgba(233, 30, 99, 0.6);
    outline-offset: 4px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-columns {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item {
        padding: 0.65rem 0.9rem;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #e91e63;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        inset: 0;
        height: 100vh;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.3s ease;
        z-index: 1000;
        width: 100vw;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
        width: 32px;
        height: 24px;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-featured {
        transform: none;
    }

    .plan-featured:hover {
        transform: translateY(-10px);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Em navegadores modernos, clip evita criação de área de scroll fantasma */
@supports (overflow: clip) {

    html,
    body {
        overflow-x: clip;
    }
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Fallback: quando AOS não está disponível, não esconda elementos */
body.no-aos [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ad1457, #7b1fa2);
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
        gap: 0.5rem;
        /* reduz espaçamento entre itens do header */
    }

    .nav-menu {
        /* visibilidade controlada pelo estado .active (overlay) */
    }

    /* Oculta ações para evitar overflow no header mobile */
    .nav-actions {
        display: none;
    }

    /* Ajusta tipografia do logo para caber melhor no mobile */
    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features {
        padding: 10px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benefit-number {
        font-size: 2rem;
        min-width: auto;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-featured {
        transform: none;
    }

    .plan-featured:hover {
        transform: translateY(-10px);
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .integration-card {
        padding: 1.5rem;
    }

    .integration-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .integration-card h3 {
        font-size: 1.1rem;
    }

    .integration-card p {
        font-size: 0.9rem;
    }
}

/* Evita scroll quando o menu móvel está aberto */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}

/* Additional animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-icon {
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(even) .feature-icon {
    animation-delay: 1.5s;
}

.feature-card:nth-child(3n) .feature-icon {
    animation-delay: 3s;
}

/* Enhanced hover effects */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Improved gradient animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(-45deg, #e91e63, #9c27b0, #3f51b5, #2196f3);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Demo Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

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

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(16, 16, 30, 0.95));
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.4s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
}

.modal-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
    color: #ffffff;
    border: 1px solid rgba(233, 30, 99, 0.5);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    margin-right: 15px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(156, 39, 176, 0.3));
    border-color: rgba(233, 30, 99, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 20px;
    }

    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-right: 10px;
    }
}

/* Interactive Features Navigation Section */
.interactive-features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.interactive-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(156, 39, 176, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-navigation-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Navigation Sidebar */
.features-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}

.nav-item:hover {
    background: transparent;
    transform: none;
}

.nav-item.active {
    background: transparent;
    transform: none;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 2px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.nav-item.active .nav-icon {
    color: #e91e63;
}

.nav-content {
    flex: 1;
    min-width: 0;
}

.nav-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.nav-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.nav-arrow {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.nav-item:hover .nav-arrow,
.nav-item.active .nav-arrow {
    color: #e91e63;
    transform: none;
}

/* Content Area */
.features-content {
    position: relative;
    min-height: 500px;
}

.content-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.content-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 24px 0;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.content-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 600px;
}

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 30, 99, 0.2);
    transform: translateX(8px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(233, 30, 99, 0.3);
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e91e63;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-navigation-container {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }

    .content-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .interactive-features {
        padding: 60px 0;
    }

    .features-navigation-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-nav {
        order: 1;
    }

    .features-content {
        order: 2;
        min-height: auto;
    }

    /* Accordion (mobile) */
    .content-item {
        position: relative;
        opacity: 0;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .content-item.active {
        opacity: 1;
        visibility: visible;
        max-height: 2000px; /* sufficient for content */
        transform: none;
    }

    .nav-item {
        padding: 20px 16px;
    }

    .nav-content h3 {
        font-size: 1rem;
    }

    .nav-content p {
        font-size: 0.85rem;
    }

    .content-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .content-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .stat-card {
        padding: 16px 20px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-item {
        padding: 16px 12px;
        gap: 12px;
    }

    .nav-icon {
        width: 40px;
        height: 40px;
    }

    .nav-content h3 {
        font-size: 0.95rem;
    }

    .nav-content p {
        font-size: 0.8rem;
    }

    .content-title {
        font-size: 1.4rem;
    }

    .stat-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-number {
        font-size: 1.2rem;
    }
}

/* Features Carousel */
.features .carousel {
    position: relative;
    margin-top: 2rem;
}

.features .carousel-viewport {
    overflow: hidden;
    border-radius: 16px;
    padding: 0 32px;
    /* aumenta o pedaço visível nas laterais */
}

.features .carousel-track {
    display: flex;
    will-change: transform;
    transition: transform 0.6s ease;
    gap: 16px;
    /* espaçamento entre os cards para reforçar a alusão */
    align-items: stretch;
    /* garante que todos os itens tenham a mesma altura */
}

.features .carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 8px;
    display: flex;
    /* permite que o card interno estique em altura */
}

/* Garante que todos os cards tenham a mesma altura dentro do carrossel */
.features .carousel-slide .feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.features .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 2;
}

.features .carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.14);
}

.features .carousel-arrow.prev {
    left: 12px;
}

.features .carousel-arrow.next {
    right: 12px;
}

/* Ajustes para desktop de tela reduzida (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .features .carousel-viewport {
        padding: 0 16px;
    }
    .features .carousel-track {
        gap: 12px;
    }
    .features .carousel-slide {
        padding: 6px;
    }
    .features .carousel-slide .feature-card {
        padding: 22px 18px;
        border-radius: 16px;
    }
    .features .carousel-slide .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    .features .carousel-slide .feature-card h3 {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }
    .features .carousel-slide .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .features .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .features .carousel-viewport {
        padding: 0 16px;
        /* mantém um pequeno padding para mostrar o "peek" dos cards no mobile */
    }

    .features .carousel-track {
        gap: 12px;
    }

    .features .carousel-arrow.prev {
        left: 8px;
    }

    .features .carousel-arrow.next {
        right: 8px;
    }
}

/* Evita overflow por escala em cartões em telas médias */
@media (max-width: 1024px) {
    .plan-featured {
        transform: none;
    }
}

.detailed-feature-text {
    grid-area: text;
}