/* 
 * landing.css - Estilos premium para a Landing Page do Orbyra Saas
 * Theme: Dark, Neon, Glassmorphism 
 */

:root {
    --landing-bg: #0F172A;
    --landing-bg-secondary: #1E293B;
    --landing-text-main: #F8FAFC;
    --landing-text-muted: #94A3B8;
    
    --landing-primary: #3B82F6;
    --landing-primary-hover: #2563EB;
    --landing-accent: #10B981; /* Neon green / Success */
    --landing-danger: #EF4444; /* Neon red */
    
    --landing-glass-bg: rgba(30, 41, 59, 0.6);
    --landing-glass-border: rgba(255, 255, 255, 0.08);
    --landing-glow: 0 0 20px rgba(59, 130, 246, 0.4);
    
    --font-heading: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

.landing-wrapper {
    background-color: var(--landing-bg);
    color: var(--landing-text-main);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Tipografia */
.landing-wrapper h1, .landing-wrapper h2, .landing-wrapper h3, .landing-wrapper h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--landing-text-main);
}

.text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-accent {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header Navbar */
.landing-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--landing-glass-border);
    z-index: 1000;
}

.landing-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.landing-brand img {
    height: 64px;
}

.landing-brand span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--landing-text-main);
}

.landing-header-actions a {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--landing-text-main);
    padding: 0.5rem 1rem;
}
.btn-login:hover {
    color: #60A5FA;
}

.btn-primary-glow {
    background: var(--landing-primary);
    color: #FFF !important;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    box-shadow: var(--landing-glow);
    border: none;
}
.btn-primary-glow:hover {
    background: var(--landing-primary-hover);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
}

/* Utility Animations */
@keyframes fadeUpIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.animate-fade-up {
    animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Sections Base */
.landing-section {
    padding: 8rem 2rem 6rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--landing-primary);
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

/* 1. Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 100px; /* Offset fixed header */
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-section .subtitle {
    font-size: 1.25rem;
    color: var(--landing-text-muted);
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

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

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-badge {
    background: var(--landing-glass-bg);
    border: 1px solid var(--landing-glass-border);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--landing-text-muted);
}
.hero-badge i { color: var(--landing-accent); }
.hero-badge.bad i { color: var(--landing-danger); }
.hero-badge.bad { text-decoration: line-through; opacity: 0.7; }

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-visual-main {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.56) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.5);
}

.hero-visual-main img,
.hero-floating-card img,
.pillar-illustration {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(12px);
}

.hero-floating-top {
    top: -28px;
    right: -18px;
    width: 250px;
    border-radius: 1.5rem;
    padding: 1.25rem;
}

.hero-floating-bottom {
    left: -42px;
    bottom: -34px;
    width: 260px;
    border-radius: 1.5rem;
    padding: 0.75rem;
}

.hero-floating-kicker,
.visual-caption-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--landing-accent);
    margin-bottom: 0.65rem;
}

.hero-floating-top strong,
.visual-caption strong {
    display: block;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--landing-text-main);
    margin-bottom: 0.4rem;
}

.hero-floating-top span:last-child {
    display: block;
    color: var(--landing-text-muted);
    line-height: 1.5;
    font-size: 0.9rem;
}

.hero-micro-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 620px;
}

.hero-proof-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1rem 1.1rem;
}

.hero-proof-value {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--landing-text-main);
    margin-bottom: 0.4rem;
}

.hero-proof-label {
    display: block;
    font-size: 0.92rem;
    color: var(--landing-text-muted);
    line-height: 1.5;
}

/* 2. Problem Section */
.problem-section {
    text-align: center;
}

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

.glass-card {
    background: linear-gradient(180deg, var(--landing-glass-bg) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid var(--landing-glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card i.icon-feat {
    font-size: 2.5rem;
    color: var(--landing-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 1rem;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: var(--landing-text-muted);
    line-height: 1.6;
}

/* 3. Pilares / Features Core */
.pillars-section {
    position: relative;
}

.pillar-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.pillar-row:nth-child(even) {
    flex-direction: row-reverse;
}

.pillar-content {
    flex: 1;
}

.pillar-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pillar-content ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.pillar-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--landing-text-muted);
}

.pillar-content ul li i {
    color: var(--landing-accent);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.pillar-visual {
    flex: 1;
    position: relative;
}

.visual-plate {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.64) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 1rem;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.4);
}

.visual-caption {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    backdrop-filter: blur(10px);
}

.mockup-window {
    background: #111827;
    border: 1px solid var(--landing-glass-border);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.mockup-header {
    background: #1F2937;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--landing-glass-border);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4B5563;
}
.mockup-dot:nth-child(1) { background: #EF4444; }
.mockup-dot:nth-child(2) { background: #F59E0B; }
.mockup-dot:nth-child(3) { background: #10B981; }

.mockup-body {
    padding: 2rem;
    /* Stylized inner blocks simulating the UI */
}

/* Simulações Visuais dentro do Mockup */
.fake-insight {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--landing-accent);
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.fake-insight i {
    font-size: 2rem;
    color: var(--landing-accent);
}
.fake-insight .text strong {
    display: block;
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.fake-insight .text span {
    color: var(--landing-text-muted);
    font-size: 0.9rem;
}

.fake-chart {
    height: 150px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 100%);
    border-bottom: 2px solid var(--landing-primary);
    margin-top: 1.5rem;
    position: relative;
}

/* 4. Golden Rule (Ação e Reação) */
.golden-rule {
    background: linear-gradient(180deg, #111827 0%, #0F172A 100%);
    border-top: 1px solid var(--landing-glass-border);
    border-bottom: 1px solid var(--landing-glass-border);
    padding: 8rem 0;
    text-align: center;
}

.reaction-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.flow-step {
    background: var(--landing-glass-bg);
    border: 1px solid var(--landing-glass-border);
    padding: 2rem;
    border-radius: 1rem;
    min-width: 250px;
}

.flow-arrow i {
    font-size: 2rem;
    color: var(--landing-primary);
    animation: pulseGlow 2s infinite;
}

/* 5. CTA Section */
.cta-section {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 5rem 2rem;
    border-radius: 2rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.15);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--landing-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 9. Pricing Section */
.pricing-section {
    text-align: center;
    max-width: 1200px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 2.25rem 1.75rem 2rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 520px;
}

.pricing-card-featured {
    border-color: rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card-featured:hover {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.25);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1.1rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.pricing-badge-free {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pricing-badge-essencial {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pricing-badge-familia {
    background: rgba(139, 92, 246, 0.2);
    color: #A78BFA;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.pricing-badge-ia {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pricing-plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 0.75rem;
    margin-bottom: 0.15rem;
    letter-spacing: -0.02em;
}

.pricing-audience {
    color: var(--landing-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--landing-text-muted);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.pricing-amount {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--landing-text-main);
    letter-spacing: -0.04em;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    width: 100%;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--landing-text-muted);
    line-height: 1.4;
}

.pricing-features li i {
    font-size: 0.8rem;
    color: var(--landing-accent);
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.pricing-feature-disabled {
    opacity: 0.35;
}

.pricing-feature-disabled i {
    color: var(--landing-text-muted) !important;
}

.pricing-feature-separator {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f59e0b;
}

.pricing-feature-highlight {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--landing-primary);
    margin-bottom: 0.25rem;
}

.pricing-value-prop {
    font-style: italic;
    color: var(--landing-text-muted);
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: 0.01em;
}

.pricing-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--landing-text-main);
}

.pricing-btn-outline:hover {
    border-color: var(--landing-primary);
    color: var(--landing-primary);
    background: rgba(59, 130, 246, 0.08);
}

.pricing-btn-primary {
    background: var(--landing-primary);
    color: #FFF;
    border: 1px solid transparent;
    box-shadow: var(--landing-glow);
}

.pricing-btn-primary:hover {
    background: var(--landing-primary-hover);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
    color: #FFF;
}

/* Hero — barra de selos abaixo do CTA */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--landing-glass-border);
    color: var(--landing-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.hero-trust-pill i {
    width: 14px;
    height: 14px;
    color: var(--landing-accent);
}

/* Social Proof Mini (após o Hero) */
.social-proof-mini {
    padding-top: 2rem;
    padding-bottom: 2rem;
    max-width: 900px;
}

.social-proof-mini-card {
    padding: 1.75rem 2rem !important;
    text-align: left;
}

.proof-mini-stars {
    margin-bottom: 0.75rem;
}

.proof-mini-stars i {
    color: #F59E0B;
    width: 16px;
    height: 16px;
    margin-right: 0.1rem;
}

.proof-mini-quote {
    font-size: 1.1rem;
    color: var(--landing-text-main);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.proof-mini-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.proof-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #FFF;
    font-size: 1rem;
    flex-shrink: 0;
}

.proof-mini-author strong {
    display: block;
    color: var(--landing-text-main);
    font-size: 0.95rem;
    line-height: 1.2;
}

.proof-mini-author span {
    color: var(--landing-text-muted);
    font-size: 0.82rem;
}

.proof-mini-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--landing-glass-border);
}

.proof-mini-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--landing-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.proof-mini-trust-item i {
    width: 16px;
    height: 16px;
    color: var(--landing-accent);
}

/* Planilha × Orbyra — tabela comparativa */
.vs-section {
    text-align: center;
}

.vs-table-wrapper {
    padding: 0 !important;
    overflow-x: auto;
    margin-top: 2rem;
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.vs-table thead th {
    padding: 1.2rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--landing-text-main);
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--landing-glass-border);
}

.vs-table thead th i {
    width: 18px;
    height: 18px;
    margin-right: 0.4rem;
    vertical-align: -3px;
}

.vs-th-criterio { width: 32%; }
.vs-th-planilha { width: 30%; color: var(--landing-text-muted) !important; }
.vs-th-orbyra { width: 38%; color: var(--landing-accent) !important; }

.vs-logo {
    height: 18px;
    width: auto;
    margin-right: 0.4rem;
    vertical-align: -3px;
    opacity: 0.95;
}

.vs-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.vs-table tbody tr:last-child {
    border-bottom: none;
}

.vs-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.vs-table th[scope="row"] {
    padding: 0.95rem 1.25rem;
    color: var(--landing-text-main);
    font-weight: 600;
    font-size: 0.92rem;
}

.vs-table td {
    padding: 0.95rem 1.25rem;
    color: var(--landing-text-muted);
    font-size: 0.9rem;
    vertical-align: middle;
}

.vs-table td i {
    width: 14px;
    height: 14px;
    margin-right: 0.45rem;
    vertical-align: -2px;
}

.vs-bad i { color: var(--landing-danger); }
.vs-warn i { color: #F59E0B; }
.vs-good {
    color: var(--landing-text-main);
    font-weight: 500;
}
.vs-good i { color: var(--landing-accent); }

.vs-footnote {
    color: var(--landing-text-muted);
    font-style: italic;
    margin-top: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-size: 1rem;
}

/* Pricing — faixa de garantia acima dos planos */
.pricing-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 999px;
    color: var(--landing-text-main);
    font-size: 0.92rem;
    text-align: left;
    max-width: 100%;
}

.pricing-guarantee i {
    width: 20px;
    height: 20px;
    color: var(--landing-accent);
    flex-shrink: 0;
}

.pricing-guarantee strong {
    color: var(--landing-text-main);
}

/* Sticky CTA flutuante */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: var(--landing-primary);
    color: #FFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    opacity: 0;
}

.sticky-cta.is-visible {
    display: inline-flex;
    opacity: 1;
}

.sticky-cta:hover {
    background: var(--landing-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(59, 130, 246, 0.6);
    color: #FFF !important;
}

.sticky-cta i {
    width: 16px;
    height: 16px;
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: none;
    }
}

/* Abstract Background Shapes */
.bg-shape {
    position: absolute;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    border-radius: 50%;
}

.shape-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: rgba(59, 130, 246, 0.3);
}

.shape-2 {
    top: 40%; right: -20%;
    width: 600px; height: 600px;
    background: rgba(16, 185, 129, 0.2);
}

.shape-3 {
    bottom: -10%; left: 20%;
    width: 500px; height: 500px;
    background: rgba(239, 68, 68, 0.15);
}

/* 6. Steps Section (Como Funciona) */
.steps-section {
    text-align: center;
    padding-top: 4rem;
}

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

.step-card {
    position: relative;
    padding-top: 3rem !important;
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--landing-primary);
    color: #FFF;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--landing-glow);
}

.step-card .icon-feat {
    margin-bottom: 1rem;
}

/* 7. Social Proof Section */
.social-proof-section {
    text-align: center;
}

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

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

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-right: 0.15rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #FFF;
    font-size: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--landing-text-main);
    font-size: 0.95rem;
    line-height: 1.2;
}

.testimonial-author span {
    color: var(--landing-text-muted);
    font-size: 0.8rem;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid var(--landing-glass-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--landing-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--landing-accent);
    font-size: 1.1rem;
}

/* 8. FAQ Section */
.faq-section {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item.glass-card {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    color: var(--landing-text-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

.faq-question:hover {
    color: var(--landing-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--landing-text-muted);
    font-size: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Loss Aversion Text */
.loss-aversion-text {
    margin-top: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--landing-text-muted);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .hero-copy {
        text-align: center;
    }

    .pillar-row, .pillar-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .hero-micro-proof {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .hero-visual {
        min-height: auto;
        padding-top: 1rem;
    }

    .hero-floating-top,
    .hero-floating-bottom {
        position: static;
        width: auto;
        margin-top: 1rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }
    .reaction-flow {
        flex-direction: column;
    }
    .flow-arrow i {
        transform: rotate(90deg);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }

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

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }

    /* Sticky CTA full-width no mobile */
    .sticky-cta {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        justify-content: center;
    }

    /* Hero — selos centralizados no mobile */
    .hero-trust-row {
        justify-content: center;
    }

    /* Comparativo Planilha × Orbyra — vira lista empilhada no mobile */
    .vs-table thead {
        display: none;
    }
    .vs-table, .vs-table tbody, .vs-table tr, .vs-table th, .vs-table td {
        display: block;
        width: 100%;
    }
    .vs-table tbody tr {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--landing-glass-border);
    }
    .vs-table th[scope="row"] {
        padding: 0 0 0.5rem;
        font-size: 1rem;
    }
    .vs-table td {
        padding: 0.35rem 0;
        font-size: 0.88rem;
    }
    .vs-table td::before {
        content: attr(data-label);
        display: inline-block;
        min-width: 4.5rem;
        color: var(--landing-text-muted);
        font-weight: 600;
        margin-right: 0.5rem;
    }

    /* Social Proof Mini — mais compacto */
    .social-proof-mini-card {
        padding: 1.25rem 1.5rem !important;
    }
    .proof-mini-trust {
        gap: 0.75rem;
    }

    /* Faixa de garantia — quebra de linha no mobile */
    .pricing-guarantee {
        align-items: flex-start;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

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

    .hero-micro-proof {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        max-width: 720px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Versão Empresa — Override de cores da Landing ────────── */
body[data-versao="Empresa"] .landing-wrapper {
    --landing-accent: #3B82F6;
}

body[data-versao="Empresa"] .text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-versao="Empresa"] .btn-primary-glow {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

body[data-versao="Empresa"] .btn-primary-glow:hover {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

body[data-versao="Empresa"] .section-label {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
}

body[data-versao="Empresa"] .pricing-card-featured {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

body[data-versao="Empresa"] .pricing-btn-primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}
