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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Quando o card tem o selo superior (ex: Mais Assinado), empurrar a badge de desconto para baixo */
.tier-basic .discount-badge {
    top: 56px;
}

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

/* Prevent images and media from breaking layout */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Ensure sections don't overflow */
section {
    overflow-x: hidden;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: white;
    border: none;
    overflow: hidden;
    isolation: isolate;
    font-weight: 600;
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 24px rgba(124, 58, 237, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 16px 48px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translateY(0) scale(0.99);
    transition-duration: 0.1s;
}

.btn-secondary {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    color: #7C3AED;
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(12px) saturate(180%);
    overflow: hidden;
    font-weight: 600;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 6px 16px rgba(124, 58, 237, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(109, 40, 217, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 12px 32px rgba(124, 58, 237, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    color: #6D28D9;
}

.btn-secondary:active {
    transform: translateY(0) scale(0.99);
    transition-duration: 0.1s;
}

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

.btn-outline:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Ajustes finos para a landing Raio-X (logo mais harmonizado) */
.page-landing-raiox .header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
}
.page-landing-raiox .nav {
    padding: 1.4rem 0;
}
.page-landing-raiox .nav-container {
    align-items: center;
}
.page-landing-raiox .nav-logo img {
    /* manter o mesmo tamanho base do desktop */
    height: 40px;
}

/* Ajuste do logo para mobile em todas as páginas */
@media (max-width: 768px) {
    .header {
        padding: 4px 10px !important;
        min-height: auto !important;
    }

    .nav {
        padding: 0.3rem 0 !important;
    }

    .nav-container {
        gap: 0.5rem !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .nav-logo {
        margin-right: auto !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    .nav-logo img {
        height: 28px !important;
        width: auto !important;
        max-width: 110px !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    .nav-actions {
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }

    .nav-cta {
        padding: 7px 12px !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        min-width: auto !important;
    }

    .nav-cta span {
        display: none !important;
    }

    .nav-cta i {
        margin-right: 0 !important;
        font-size: 1.1rem !important;
    }

    /* Botões de autenticação mobile (Login/Cadastre-se) */
    .nav-auth-links {
        gap: 0.4rem !important;
    }

    .nav-auth-link {
        font-size: 0.8rem !important;
        padding: 6px 8px !important;
    }

    .nav-auth-cta {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
        gap: 4px !important;
    }

    .nav-auth-cta i {
        font-size: 0.9rem !important;
    }

    .nav-auth-cta span,
    .nav-account-link span,
    .nav-logout-link span {
        display: none !important;
    }

    .nav-account-link,
    .nav-logout-link {
        padding: 6px 8px !important;
        font-size: 0.8rem !important;
    }
}

/* Mobile: evitar que o ícone quebre o título "Qual planilha preciso enviar?" */
@media (max-width: 768px) {
    .planilha-info .section-header h2 {
        font-size: 1.7rem;
    }

    .planilha-info .section-header h2::before {
        display: none;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 999px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7C3AED, #6D28D9);
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.06);
}

.nav-link:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Nav Actions - Botões do lado direito */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 4px 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(109,40,217,0.02) 100%);
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}

/* Botão CTA principal (Pedir Raio-X) */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    border: 1px solid rgba(124, 58, 237, 0.7);
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.25);
    position: relative;
    isolation: isolate; /* cria contexto para o brilho interno */
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
    filter: brightness(1.03);
}

/* Brilho dinâmico avançado dentro do CTA (não é um simples hover básico) */
.nav-cta::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
      radial-gradient(circle at 0% 0%, rgba(255,255,255,0.52) 0%, transparent 55%),
      radial-gradient(circle at 100% 0%, rgba(255,255,255,0.32) 0%, transparent 55%);
    opacity: 0;
    transform: translate3d(-20%, 0, 0);
    transition: opacity 0.4s ease, transform 0.45s ease;
    z-index: 0;
}

.nav-cta:hover::before {
    opacity: 1;
    transform: translate3d(10%, 0, 0);
}

.nav-cta > * {
    position: relative;
    z-index: 1;
}

/* Container dos links de autenticação */
.nav-auth-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#auth-links-logged-out,
#auth-links-logged-in {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Login - link simples */
.nav-auth-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-auth-link:hover {
    color: #667eea;
}

/* Cadastre-se - botão pill roxo */
.nav-auth-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #7C3AED;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(124, 58, 237, 0.45);
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.25);
}

.nav-auth-cta:hover {
    background: rgba(124, 58, 237, 0.04);
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.35);
}

/* Minha Conta - pill branco com borda */
.nav-account-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 999px;
    border: none;
    background: rgba(124, 58, 237, 0.08);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #4c1d95;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.18);
}

.nav-account-link:hover {
    background: rgba(124, 58, 237, 0.16);
    color: #3b0764;
}

/* Sair - link discreto */
.nav-logout-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 0 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-logout-link:hover {
    color: #ef4444;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section - Premium Rebuild with Fluid Elements */
.hero {
    padding: 140px 0 100px;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

/* Elementos fluidos de fundo (blobs + ondas) */
.hero-fluid-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Drift animations (movimento fluido) */
@keyframes drift1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(80px, -60px);
    }
    50% {
        transform: translate(40px, 40px);
    }
    75% {
        transform: translate(-40px, 20px);
    }
}

@keyframes drift2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(-70px, 50px);
    }
    66% {
        transform: translate(50px, -30px);
    }
}

@keyframes drift3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-60px, -80px) rotate(180deg);
    }
}

/* Ondas SVG animadas */
.fluid-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    z-index: 0;
    opacity: 1;
    transform: rotate(180deg);
}

.wave-path {
    animation: waveMove 12s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        d: path('M0,160L48,144C96,128,192,96,288,101.3C384,107,480,149,576,154.7C672,160,768,128,864,122.7C960,117,1056,139,1152,133.3C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z');
    }
    50% {
        d: path('M0,96L48,112C96,128,192,160,288,154.7C384,149,480,107,576,101.3C672,96,768,128,864,133.3C960,139,1056,117,1152,122.7C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z');
    }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    color: #0f172a;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Spotlight premium no trecho "Raio-X Gratuito" */
.hero-title-spotlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #6D28D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 12px rgba(124, 58, 237, 0.35));
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 1.45rem;
    color: #334155;
    margin-bottom: 2.8rem;
    line-height: 1.7;
    font-weight: 450;
    letter-spacing: -0.015em;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
    max-width: 90%;
    opacity: 0.92;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Badges premium com checkmarks */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    box-shadow: 
      0 0 0 1px rgba(255, 255, 255, 0.5),
      0 2px 8px rgba(15, 23, 42, 0.06),
      0 8px 24px -6px rgba(124, 58, 237, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 0 0 1px rgba(124, 58, 237, 0.25),
      0 4px 12px rgba(15, 23, 42, 0.08),
      0 12px 32px -8px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(255, 255, 255, 1);
}

.hero-badge i {
    font-size: 0.875rem;
    color: #7C3AED;
    filter: drop-shadow(0 1px 2px rgba(124, 58, 237, 0.3));
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

.hero-image {
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
    position: relative;
    perspective: 1200px;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 65%);
    filter: blur(50px);
    z-index: -1;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

.dashboard-preview {
    width: 100%;
    max-width: 540px;
    border-radius: 20px;
    box-shadow: 
      0 0 0 1px rgba(255, 255, 255, 0.8),
      0 8px 16px -2px rgba(15, 23, 42, 0.08),
      0 24px 48px -12px rgba(124, 58, 237, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.dashboard-preview:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg) scale(1.03);
    box-shadow: 
      0 0 0 1px rgba(124, 58, 237, 0.4),
      0 12px 24px -4px rgba(15, 23, 42, 0.12),
      0 40px 80px -20px rgba(124, 58, 237, 0.35),
      inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: white;
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-icon i {
    font-size: 2rem;
    color: white;
}

.problem-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Solution Section - Fundo Branco com Ondas Roxas */
.solution {
    padding: 80px 0;
    background: #ffffff;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.solution .section-header h2 {
    color: #0f172a;
}

.solution .section-header p {
    color: #6b7280;
}

/* Ondas SVG animadas no topo e embaixo */
.solution-wave {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.solution-wave-top {
    top: 0;
    height: 120px;
}

.solution-wave-bottom {
    bottom: 0;
    height: 120px;
}

.wave-animated {
    animation: waveFlow 18s ease-in-out infinite;
}

@keyframes waveFlow {
    0%, 100% {
        d: path('M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z');
    }
    50% {
        d: path('M0,32L48,42.7C96,53,192,75,288,80C384,85,480,75,576,69.3C672,64,768,64,864,58.7C960,53,1056,43,1152,48C1248,53,1344,75,1392,85.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z');
    }
}

/* Canvas para linhas conectadas */
.connection-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Elementos decorativos (pontos flutuantes) */
.decorative-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decorative-dots .dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(124, 58, 237, 0.4);
    border-radius: 50%;
    animation: floatDot 8s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.dot-2 {
    top: 25%;
    left: 85%;
    animation-delay: 1s;
    animation-duration: 12s;
}

.dot-3 {
    top: 45%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.dot-4 {
    top: 60%;
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 11s;
}

.dot-5 {
    top: 35%;
    left: 50%;
    animation-delay: 0.5s;
    animation-duration: 10s;
}

.dot-6 {
    top: 70%;
    left: 20%;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.dot-7 {
    top: 20%;
    left: 70%;
    animation-delay: 1.2s;
    animation-duration: 9.5s;
}

.dot-8 {
    top: 80%;
    left: 60%;
    animation-delay: 0.8s;
    animation-duration: 11.5s;
}

@keyframes floatDot {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px);
        opacity: 0.6;
    }
    50% {
        transform: translate(-15px, -50px);
        opacity: 0.4;
    }
    75% {
        transform: translate(25px, -35px);
        opacity: 0.5;
    }
}

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

.solution-steps::before {
    display: none;
}

.step {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.6rem 2.4rem;
    text-align: left;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow:
      0 10px 30px rgba(15, 23, 42, 0.08),
      0 0 0 1px rgba(148, 163, 184, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gradient border animado */
.step::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        135deg,
        #7C3AED,
        #A855F7,
        #6D28D9,
        #7C3AED
    );
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    animation: gradientRotate 4s linear infinite;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.step::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
      0 20px 50px rgba(124, 58, 237, 0.15),
      0 0 0 1px rgba(124, 58, 237, 0.2);
}

.step:hover::before {
    opacity: 1;
}

.step:hover::after {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #EEF2FF, #EDE9FE);
    color: #7C3AED;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    box-shadow:
      0 4px 12px rgba(124, 58, 237, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.9);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.step p {
    font-size: 0.98rem;
    color: #6b7280;
}

.step-icon {
    margin-top: 1.25rem;
}

.step-icon i {
    font-size: 1.75rem;
    color: #7C3AED;
}

/* Seção: Qual planilha preciso enviar? - PREMIUM UAU */
.planilha-info {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos de fundo - desativados para fundo totalmente branco */
.planilha-bg-elements {
    display: none;
}

/* Grid animado de pontos (partículas sutis) */
.planilha-grid {
	position: absolute;
	inset: 0;
	background-image:
		 radial-gradient(circle, rgba(148, 163, 184, 0.16) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.28;
	animation: gridPulse 10s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

/* Partículas flutuantes */
.planilha-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.6), rgba(168, 85, 247, 0.3));
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    animation: floatParticle 15s ease-in-out infinite;
}

.planilha-particle.p1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.planilha-particle.p2 {
    top: 35%;
    left: 85%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.planilha-particle.p3 {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.planilha-particle.p4 {
    top: 75%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.planilha-particle.p5 {
    top: 45%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 15s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -60px) scale(1.1);
        opacity: 0.6;
    }
}

/* Orbs grandes de fundo */
.planilha-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.32;
    animation: floatOrb 20s ease-in-out infinite;
}

.planilha-orb.orb1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
    animation-delay: 0s;
}

.planilha-orb.orb2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
    animation-delay: 5s;
}

/* Onda SVG no topo */
.planilha-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 0;
    animation: waveFloat 12s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.planilha-info .container {
    position: relative;
    z-index: 1;
}

.planilha-info .section-header h2 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2.3rem;
}

.planilha-info .section-header h2::before {
    content: none;
}

.planilha-info .section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.9rem;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #7C3AED, #A855F7, #22d3ee);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
}

.passo-a-passo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 2.75rem 2.75rem 2.5rem;
    max-width: 720px;
    margin: 0 auto;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 20px 60px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.passo-a-passo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.06), transparent 60%);
    opacity: 1;
    pointer-events: none;
}

.passo-a-passo-card h3 {
    position: relative;
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 2.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
}

.passo-a-passo-card h3::before {
    content: '\f140';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7C3AED, #6366f1);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
}

.passo-a-passo-card h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.9rem;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #7C3AED, #A855F7, #22d3ee);
}

.planilha-ghost-icon {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(124, 58, 237, 0.25);
    opacity: 0.3;
    transform: rotate(12deg);
    background: radial-gradient(circle at 30% 0%, rgba(245, 243, 255, 0.9), rgba(167, 139, 250, 0.4));
    filter: blur(1px);
    pointer-events: none;
    z-index: 0;
    animation: floatSheet 12s ease-in-out infinite;
}

.planilha-ghost-icon i {
    font-size: 5rem;
}

@keyframes floatSheet {
    0%, 100% {
        transform: translateY(0) rotate(10deg) scale(1);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-15px) rotate(16deg) scale(1.05);
        opacity: 0.35;
    }
}

.passo-lista {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 0 2.2rem 0;
    z-index: 1;
}

.passo-lista::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(129, 140, 248, 0.1), rgba(129, 140, 248, 0.65));
}

.passo-lista::after {
    content: "";
    position: absolute;
    left: 20px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #eef2ff, #7C3AED);
    box-shadow: 0 0 0 6px rgba(129, 140, 248, 0.25);
    animation: passoProgress 8s ease-in-out infinite;
}

@keyframes passoProgress {
    0% {
        top: 0.3rem;
    }
    25% {
        top: 3.5rem;
    }
    50% {
        top: 7.1rem;
    }
    75% {
        top: 10.7rem;
    }
    100% {
        top: 14.3rem;
    }
}

.passo-lista li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.6rem;
    align-items: flex-start;
}

.passo-numero {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #7C3AED, #6366f1);
    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.4);
}

.passo-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.passo-content strong {
    color: #111827;
    font-size: 1.02rem;
}

.passo-content span,
.passo-content a {
    color: #6b7280;
    font-size: 0.92rem;
}

.passo-content a {
    color: #7C3AED;
    text-decoration: none;
    font-weight: 500;
}

.passo-content a:hover {
    text-decoration: underline;
}

.alerta-importante {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    border: 1px solid #fef3c7;
    border-left-width: 4px;
    border-left-color: #f59e0b;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.alerta-importante::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 251, 235, 0.85), transparent 60%);
    opacity: 1;
    pointer-events: none;
}

.alerta-importante i {
    position: relative;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 0.95rem;
    margin-top: 0.2rem;
    background: #fffbeb;
    box-shadow: 0 4px 10px rgba(248, 181, 0, 0.35);
}

.alerta-titulo {
    position: relative;
    color: #92400e;
    margin: 0 0 0.15rem 0;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.alerta-importante p {
    position: relative;
    color: #92400e;
    margin: 0;
    line-height: 1.6;
    font-size: 0.94rem;
}

.alerta-importante strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .passo-a-passo-card {
        padding: 2.1rem 1.6rem 2rem;
    }

    .passo-lista::before {
        left: 24px;
    }

    .passo-lista::after {
        left: 18px;
    }
}

/* Formulário Principal */
.formulario-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Landing Raio-X: fundo 100% branco (sem orbs/grade) */
.formulario-bg-elements {
    display: none;
}

.form-grid,
.faq-grid {
    display: none;
}

.form-orb {
    display: none;
    filter: blur(55px);
    opacity: 0.32;
    animation: floatOrb 22s ease-in-out infinite alternate;
}

.form-orb.orb-left {
    width: 360px;
    height: 360px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 65%);
}

.form-orb.orb-right {
    width: 320px;
    height: 320px;
    bottom: -110px;
    right: -80px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.5), transparent 65%);
    animation-delay: 4s;
}

.formulario-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.formulario-card .form-group {
    margin-bottom: 1.5rem;
}

.formulario-card label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.formulario-card .opcional {
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.85rem;
}

.formulario-card input[type="text"],
.formulario-card input[type="email"],
.formulario-card input[type="tel"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.formulario-card input:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: #f9fafb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.upload-area:hover {
    border-color: #7C3AED;
    background: #f5f3ff;
}

.upload-area.is-dragover {
    border-color: #7C3AED;
    background: #f5f3ff;
}

.upload-area label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #6b7280;
    font-weight: 500;
}

.upload-area label i {
    font-size: 2.5rem;
    color: #7C3AED;
}

.upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-info {
    margin-top: 0.75rem;
}

.upload-info small {
    color: #9ca3af;
    font-size: 0.85rem;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seguranca-badges {
    margin-top: 2.5rem;
    padding: 1.75rem 1.75rem 2rem;
    border-radius: 16px;
    border: 1px solid #bbf7d0;
    background: linear-gradient(135deg, #ecfdf3 0%, #d1fae5 100%);
    text-align: left;
}

.seguranca-badges p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #065f46;
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
    font-weight: 600;
}

.seguranca-badges p i {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.35);
    margin-right: 0;
}

.seguranca-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
}

.seguranca-lista li {
    color: #374151;
    font-size: 0.9rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.seguranca-lista i {
    color: #16a34a;
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

@media (max-width: 768px) {
    .seguranca-lista {
        grid-template-columns: 1fr;
    }
    
    .passo-a-passo-card {
        padding: 2rem 1.5rem;
    }
    
    .formulario-card {
        padding: 2rem 1.5rem;
    }
}

/* Seção: O que você vai descobrir (Benefícios Raio-X) */
.beneficios-raio-x {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.beneficios-raio-x::before,
.beneficios-raio-x::after {
    display: none;
}

.beneficios-raio-x .container {
    position: relative;
    z-index: 1;
}

.beneficios-raio-x .section-header h2 {
    font-size: 2.4rem;
    letter-spacing: -0.03em;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.beneficio-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 1.8rem 1.8rem 1.9rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.03);
    transform: translateY(0) translateZ(0);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease;
}

.beneficio-card::before {
    display: none;
}

.beneficio-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(167, 139, 250, 0.27), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translate3d(-10px, -10px, 0);
    pointer-events: none;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.beneficio-card:hover::after {
    opacity: 1;
}

.beneficio-card:hover::after {
    transform: translate3d(0, 0, 0);
}

.beneficio-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    background: #7C3AED;
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.45);
    animation: floatIcon 4.5s ease-in-out infinite;
}

.beneficio-icon i {
    color: #ffffff;
}

.beneficio-card:nth-child(2) .beneficio-icon { animation-delay: 0.35s; }
.beneficio-card:nth-child(3) .beneficio-icon { animation-delay: 0.7s; }
.beneficio-card:nth-child(4) .beneficio-icon { animation-delay: 1.05s; }
.beneficio-card:nth-child(5) .beneficio-icon { animation-delay: 1.4s; }
.beneficio-card:nth-child(6) .beneficio-icon { animation-delay: 1.75s; }

.beneficio-card h3 {
    font-size: 1.15rem;
    color: #111827;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.beneficio-card p {
    color: #6b7280;
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes floatOrb {
    0% {
        transform: translate3d(-40px, 10px, 0) scale(1);
    }
    100% {
        transform: translate3d(30px, -20px, 0) scale(1.05);
    }
}

/* FAQ Raio-X */
.faq-raio-x {
    padding: 96px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-raio-x .section-header {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(129, 140, 248, 0.08);
    color: #4f46e5;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
}

.faq-kicker i {
    font-size: 0.9rem;
}

.faq-raio-x .section-header h2 {
    font-size: 2rem;
    letter-spacing: -0.03em;
    color: #111827;
}

.faq-raio-x .section-header p {
    margin-top: 0.75rem;
    color: #6b7280;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
}

.faq-raio-x .section-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 1.25rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #7C3AED, #6366f1, #A855F7);
}

.faq-tags {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(249, 250, 251, 0.9);
    border: 1px solid rgba(209, 213, 219, 0.8);
    font-size: 0.78rem;
    color: #4b5563;
    font-weight: 500;
}

.faq-tag i {
    font-size: 0.8rem;
    color: #7C3AED;
}

.faq-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.faq-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.32;
    animation: floatOrb 26s ease-in-out infinite alternate;
}

.faq-orb.orb-top {
    width: 320px;
    height: 320px;
    top: -140px;
    right: -120px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.6), transparent 65%);
}

.faq-orb.orb-bottom {
    width: 260px;
    height: 260px;
    bottom: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(226, 232, 240, 1), transparent 65%);
    animation-delay: 5s;
}

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

.faq-raio-x .container,
.formulario-section .container {
    position: relative;
    z-index: 1;
}

.faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(96, 165, 250, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(129, 140, 248, 0.9);
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: #111827;
    margin: 0;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.faq-question h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7C3AED, #6366f1);
    box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.18);
}

.faq-question i {
    color: #7C3AED;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-item.active .faq-question h3 {
    color: #4f46e5;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    text-align: center;
    color: white;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.95;
}

.cta-badges i {
    color: #10b981;
}

@media (max-width: 768px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final h2 {
        font-size: 1.75rem;
    }
    
    .cta-final p {
        font-size: 1.05rem;
    }
    
    .cta-badges {
        gap: 1rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.benefit-category {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.category-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-header h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1rem;
    margin: 0;
}

.benefit-list {
    padding: 2rem;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-list i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Demo Section */
.demo {
    padding: 80px 0;
    background: #f8f9fa;
}

.demo-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.demo-before,
.demo-after {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.demo-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.demo-arrow {
    font-size: 2rem;
    color: #667eea;
}

.demo-after img {
    width: 100%;
    border-radius: 8px;
}

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

/* ========================================
   PRICING SECTION - TIER-1 PREMIUM
   ======================================== */
.pricing {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing .section-header {
    position: relative;
    z-index: 2;
}

/* Título premium da seção pricing */
.pricing .section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Subtítulo premium */
.pricing .section-header p {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Card Base Premium Ultra-Sophisticated */
.premium-tier {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid rgba(124, 58, 237, 0.08);
    border-radius: 24px;
    padding: 2.25rem 2.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.06),
        0 4px 16px rgba(124, 58, 237, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.06);
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
    display: flex;
    flex-direction: column;
    min-height: 660px;
    gap: 1.25rem;
}

.premium-tier > * {
    width: 100%;
}

/* Botões posicionados logo após o bloco de preços */
.premium-tier .btn,
.premium-tier .tier-btn {
    margin-top: 0;
}

/* Gradient overlay sutil */
.premium-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: radial-gradient(circle at top, rgba(124, 58, 237, 0.03), transparent);
    pointer-events: none;
    border-radius: inherit;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.premium-tier:nth-child(1) { animation-delay: 0.1s; }
.premium-tier:nth-child(2) { animation-delay: 0.2s; }
.premium-tier:nth-child(3) { animation-delay: 0.3s; }

.premium-tier:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.15),
        0 16px 40px rgba(124, 58, 237, 0.18),
        0 24px 64px rgba(0, 0, 0, 0.12),
        0 0 80px rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.3);
}

.premium-tier:hover::before {
    background: radial-gradient(circle at top, rgba(124, 58, 237, 0.06), transparent);
}

/* Ribbons externos seguindo a referência */
.has-ribbon {
    padding-top: 3.5rem;
}

.pricing-ribbon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #f3f4f6;
    color: #111827;
    padding: 10px 26px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.15);
    z-index: 12;
}

.pricing-ribbon i {
    font-size: 0.9rem;
}

.ribbon-popular {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #fff;
}

.ribbon-recommended {
    background: linear-gradient(135deg, #9333ea 0%, #5b21b6 100%);
    color: #fff;
}

/* Badge de desconto alinhada ao canto superior direito */
.discount-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.35);
    display: inline-flex;
    gap: 6px;
    align-items: center;
    z-index: 8;
}

.discount-badge i {
    font-size: 0.75rem;
}

.tier-basic .discount-badge {
    top: 62px;
}

.tier-free .pricing-header {
    padding-top: 0;
}

.has-ribbon .pricing-header {
    padding-top: 0;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 
            0 0 0 4px rgba(255, 255, 255, 1),
            0 0 0 6px rgba(124, 58, 237, 0.25),
            0 8px 32px rgba(124, 58, 237, 0.45),
            0 0 50px rgba(124, 58, 237, 0.25);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 0 4px rgba(255, 255, 255, 1),
            0 0 0 8px rgba(124, 58, 237, 0.35),
            0 12px 40px rgba(124, 58, 237, 0.55),
            0 0 70px rgba(124, 58, 237, 0.35);
        transform: translateX(-50%) scale(1.05);
    }
}

/* Pills Coloridos Ultra-Premium - ALINHAMENTO FORÇADO */
.pricing-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    height: 40px;
}

.pricing-pill:hover {
    transform: scale(1.05);
}

.pill-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.12) 100%);
    color: #1e40af;
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.pill-yellow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.12) 100%);
    color: #92400e;
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.pill-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(109, 40, 217, 0.12) 100%);
    color: #5b21b6;
    border: 1.5px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Header dos Cards - ALINHAMENTO FORÇADO */
.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    width: 100%;
    text-align: center;
}

.pricing-header h3 {
    color: #111827;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.pricing-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

/* Preços Premium - Hierarquia clara */
.price {
    margin: 0.75rem 0 1.25rem;
    padding: 0 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}

.price-free {
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.2rem;
    color: #4c1d95;
    font-weight: 700;
    margin-right: 4px;
}


.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.amount {
    font-size: 3.45rem;
    font-weight: 900;
    color: #4c1d95;
    letter-spacing: -2px;
    line-height: 1;
}

.tier-free .amount {
    color: #047857;
    font-size: 2.75rem;
}

.period {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
    margin-left: 4px;
}

/* Preço antigo riscado - acima do preço principal */
.old-price {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.offer-note {
    font-size: 0.82rem;
    color: #4c1d95;
    font-weight: 600;
}

.price-note {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Features List Ultra-Premium */
.pricing-features {
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    text-align: left;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #374151;
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 4px 6px;
    border-radius: 10px;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 0;
}

.pricing-features li:hover {
    background: rgba(124, 58, 237, 0.03);
    transform: translateX(4px);
    padding-left: 16px;
}

.pricing-features i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-features li:hover i {
    background: rgba(16, 185, 129, 0.15);
    transform: scale(1.1) rotate(5deg);
}

/* Destaque do Card Básico - Sofisticação Máxima */
.tier-basic {
    border: 2.5px solid;
    border-image: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.3), 
        rgba(147, 51, 234, 0.4), 
        rgba(124, 58, 237, 0.3)) 1;
    transform: scale(1.05);
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.08),
        0 8px 24px rgba(124, 58, 237, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(124, 58, 237, 0.08),
        inset 0 0 60px rgba(124, 58, 237, 0.02);
}

.tier-basic::before {
    background: radial-gradient(circle at top, rgba(124, 58, 237, 0.05), transparent);
    border-radius: inherit;
}

.tier-basic:hover {
    transform: scale(1.05) translateY(-12px);
    border-image: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.45), 
        rgba(147, 51, 234, 0.6), 
        rgba(124, 58, 237, 0.45)) 1;
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.15),
        0 16px 40px rgba(124, 58, 237, 0.2),
        0 24px 64px rgba(0, 0, 0, 0.15),
        0 0 60px rgba(124, 58, 237, 0.12),
        inset 0 0 80px rgba(124, 58, 237, 0.03);
}

/* Bordas Sutis e Sofisticadas */
.tier-free,
.tier-pro {
    border: 1.5px solid;
    border-image: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.12), 
        rgba(147, 51, 234, 0.18), 
        rgba(124, 58, 237, 0.12)) 1;
}

.tier-free:hover,
.tier-pro:hover {
    border-image: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.25), 
        rgba(147, 51, 234, 0.35), 
        rgba(124, 58, 237, 0.25)) 1;
}

/* Verde sutil no Gratuito */
.tier-free {
    border-image: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.18), 
        rgba(5, 150, 105, 0.24), 
        rgba(16, 185, 129, 0.18)) 1;
}

.tier-free:hover {
    border-image: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.3), 
        rgba(5, 150, 105, 0.4), 
        rgba(16, 185, 129, 0.3)) 1;
}

.premium-tier p {
    margin: 0;
}

/* Botões Ultra-Premium Sofisticados */
.premium-tier .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
    outline: none;
}

/* Botão Primário - Gradiente + Glow Sutil */
.premium-tier .btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #6D28D9 100%);
    color: white;
    border: none;
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.1),
        0 4px 16px rgba(124, 58, 237, 0.25),
        0 8px 32px rgba(124, 58, 237, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.premium-tier .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 600ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
}

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

.premium-tier .btn-primary:hover {
    background: linear-gradient(135deg, #6D28D9 0%, #7C3AED 50%, #9333EA 100%);
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.2),
        0 6px 20px rgba(124, 58, 237, 0.35),
        0 12px 40px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.premium-tier .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.15),
        0 3px 10px rgba(124, 58, 237, 0.25);
}

/* Botão Outline - Sofisticado */
.premium-tier .btn-outline {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 255, 0.9) 100%);
    color: #7C3AED;
    border: 2px solid rgba(124, 58, 237, 0.9);
    border-radius: 999px;
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.08),
        0 2px 8px rgba(124, 58, 237, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.premium-tier .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
}

.premium-tier .btn span {
    position: relative;
    z-index: 1;
}

.premium-tier .btn-outline:hover::before {
    opacity: 1;
}

.premium-tier .btn-outline:hover {
    color: white;
    border-image: linear-gradient(135deg, #9333EA, #7C3AED, #9333EA) 1;
    box-shadow: 
        0 0 0 1px rgba(124, 58, 237, 0.15),
        0 4px 16px rgba(124, 58, 237, 0.25),
        0 8px 32px rgba(124, 58, 237, 0.15);
    transform: translateY(-3px);
}

.premium-tier .btn-outline:active {
    transform: translateY(-1px);
}

.pricing-guarantee {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #666;
}

.pricing-guarantee i {
    color: #10b981;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #2d3748;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
	background: radial-gradient(circle at top left, #111827 0%, #020617 45%, #020617 100%);
	color: #e5e7eb;
	padding: 60px 0 24px;
	border-top: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 -20px 40px rgba(15, 23, 42, 0.55);
}

/* Footer especifico da landing Raio-X - fundo branco e clean */
.footer-landing {
    background: #ffffff;
    color: #ffffff;
    padding: 48px 0 28px;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.footer-landing .footer-content {
    padding: 24px 0 24px; /* empurra o grid um pouco para baixo dentro da faixa roxa */
}

.footer-landing .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-landing .footer-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 0.9rem;
}

.footer-landing .footer-links,
.footer-landing .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-landing .footer-links li,
.footer-landing .footer-contact li {
    margin-bottom: 0.4rem;
}

.footer-landing .footer-links a,
.footer-landing .footer-contact a,
.footer-landing .footer-contact span {
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
}

.footer-landing .footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 0.9rem;
}

.footer-landing .footer-tagline {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.9rem;
}

.footer-landing .footer-bottom {
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.footer-landing .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-landing .footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-landing .legal-link {
    color: #4f46e5;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-landing .legal-link:hover {
    text-decoration: underline;
}

/* Footer landing - mobile */
@media (max-width: 768px) {
    .footer-landing {
        padding: 32px 0 20px;
    }

    .footer-landing .footer-content {
        padding: 16px 0 20px;
    }

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

    .footer-landing .footer-about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-landing .footer-logo {
        max-width: 140px;
    }

    .footer-landing .footer-tagline {
        font-size: 0.9rem;
        max-width: 280px;
        margin: 0 auto 1rem;
    }

    .footer-landing .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

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

    .footer-landing .footer-bottom {
        padding-top: 1rem;
    }

    .footer-landing .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .footer-landing .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

.footer-section h3,
.footer-section h4 {
	color: #f9fafb;
	margin-bottom: 1rem;
	font-weight: 600;
}

.footer-brand h3 {
	font-size: 1.4rem;
	letter-spacing: -0.03em;
}

.footer-section p {
	color: #9ca3af;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

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

.footer-section ul li {
	margin-bottom: 0.45rem;
}

.footer-section ul li a {
	color: #9ca3af;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s ease, transform 0.2s ease;
}

.footer-section ul li a:hover {
	color: #e5e7eb;
	transform: translateX(3px);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #667eea;
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.footer-bottom {
	border-top: 1px solid #4a5568;
	padding-top: 1.75rem;
	text-align: center;
	color: #9ca3af;
	font-size: 0.85rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2d3748;
}

.close {
    color: #a0aec0;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 2rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.demo-video {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

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

    .nav-toggle {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 60px 0 40px !important;
        min-height: auto !important;
    }

    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }

    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    /* Hero Badges Mobile */
    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
        white-space: nowrap;
    }

    /* Typography Mobile */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    /* Grid Layouts Mobile */
    .problem-grid,
    .solution-steps,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demo-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .demo-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .benefit-category {
        min-width: auto;
    }

    /* FAQ Mobile */
    .faq-raio-x,
    .faq {
        padding: 60px 0;
    }

    .faq-header {
        text-align: center;
        padding: 0 1rem;
    }

    .faq-kicker {
        font-size: 0.7rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

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

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

    .faq-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .faq-list {
        padding: 0 1rem;
    }

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

    .faq-answer {
        font-size: 0.95rem;
    }

    /* Footer Mobile Premium */
    .footer {
        padding: 48px 0 24px;
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        text-align: left;
        padding: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.15);
        padding-bottom: 1.5rem;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        color: #ffffff;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        color: #a5b4fc;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #cbd5e1;
    }

    .footer-section ul li {
        margin-bottom: 0.75rem;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
        color: #cbd5e1;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .footer-section ul li a:hover {
        color: #a5b4fc;
        transform: translateX(4px);
    }

    .footer-brand {
        padding-bottom: 1.5rem;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    }

    .footer-brand h3 {
        background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

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

    .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.95rem;
        color: #cbd5e1;
    }

    .contact-info i {
        color: #a5b4fc;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 0;
        border-top: 1px solid rgba(148, 163, 184, 0.15);
    }

    .footer-bottom p {
        font-size: 0.85rem;
        color: #94a3b8;
        text-align: center;
    }

    /* Modals Mobile */
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    /* Connection Canvas Mobile */
    .connection-canvas {
        height: 300px;
    }

    /* Orbs Mobile - reduce size */
    .faq-orb,
    .solution-orb,
    .hero-orb,
    .blob-1,
    .blob-2,
    .blob-3 {
        width: 200px;
        height: 200px;
    }
    
    /* Hide large decorative elements that cause overflow */
    .planilha-orb,
    .form-orb {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }

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

    /* Badges Extra Small Mobile */
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* Buttons Mobile */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    /* Typography Small Mobile */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Section Padding Mobile */
    .problem,
    .solution,
    .benefits,
    .demo,
    .pricing,
    .faq,
    .faq-raio-x,
    .final-cta {
        padding: 50px 0;
    }

    /* Cards Mobile */
    .problem-card,
    .solution-card,
    .benefit-card {
        padding: 1.5rem;
    }

    /* Solution Steps Mobile */
    .solution-step::before {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Pricing Premium Mobile */
    .pricing-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tier-basic {
        transform: scale(1);
    }
    
    .tier-basic:hover {
        transform: translateY(-8px);
    }
    
    .premium-tier {
        padding: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
        min-height: auto;
    }
    
    .pricing-subtitle {
        font-size: 0.875rem;
        min-height: auto;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .tier-free .amount {
        font-size: 2.25rem;
    }
    
    .pricing-pill {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .pricing-features {
        min-height: auto;
    }
    
    .pricing-features li {
        font-size: 0.875rem;
        gap: 8px;
    }
    
    .premium-tier .btn {
        padding: 14px 18px;
        font-size: 0.9rem;
        min-height: 52px;
    }
    
    .price {
        min-height: auto;
        margin: 1.5rem 0;
        padding: 1rem 0;
    }

    /* FAQ Small Mobile */
    .faq-header h2 {
        font-size: 1.75rem;
    }

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

    /* Footer Small Mobile */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-brand h3 {
        font-size: 1.25rem;
    }

    /* Orbs Extra Small Mobile */
    .faq-orb,
    .solution-orb,
    .hero-orb,
    .blob-1,
    .blob-2,
    .blob-3 {
        width: 150px;
        height: 150px;
    }

    /* Connection Canvas Small Mobile */
    .connection-canvas {
        height: 250px;
    }
    
    /* Ensure no fixed width elements break layout */
    .dashboard-preview,
    .passo-a-passo-card,
    .form-container,
    .beneficios-raio-x {
        max-width: 100%;
    }
}

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

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

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

