/* ==========================================================================
   LINX Intelligent Systems - Design System & Estilos de Alta Performance
   Focado em Acessibilidade Rigorosa (WCAG 2.1 AA/AAA / eMAG) e UI/UX Premium
   Ecossistema: Institucional LINX, Clinq, Haklai e VewPass
   ========================================================================== */

/* --- 1. CSS Variables & Design Tokens --- */
:root {
    /* Cores Principais (HSL) */
    --bg-main: hsl(222, 47%, 5%);        /* #070a12 - Deep Dark Navy */
    --bg-secondary: hsl(222, 40%, 9%);   /* #0d1220 - Carbon Navy */
    --bg-card: hsl(222, 35%, 12%);       /* #141c30 - Elevated Card */
    --bg-card-hover: hsl(222, 35%, 16%); /* Card Hover */

    /* Cores de Acento & Destaque LINX / Clinq */
    --color-primary: hsl(190, 100%, 50%);    /* #00f0ff - Electric Cyan */
    --color-primary-dark: hsl(190, 100%, 40%);
    --color-primary-glow: hsla(190, 100%, 50%, 0.35);
    
    --color-accent: hsl(221, 83%, 53%);      /* #2563eb - LINX Royal Blue */
    --color-accent-glow: hsla(221, 83%, 53%, 0.4);

    /* Cores Haklai (Igrejas em Célula) */
    --color-purple: hsl(265, 85%, 60%);      /* #8b5cf6 - Spiritual Purple */
    --color-purple-hover: hsl(265, 85%, 50%);
    --color-purple-glow: hsla(265, 85%, 60%, 0.4);
    --color-gold: hsl(40, 95%, 55%);         /* #f59e0b - Holy Gold */

    /* Cores VewPass (Ticket Events) */
    --color-pink: hsl(330, 85%, 60%);        /* #ec4899 - Neon Ticket Pink */
    --color-pink-hover: hsl(330, 85%, 50%);
    --color-pink-glow: hsla(330, 85%, 60%, 0.4);
    --color-violet: hsl(250, 85%, 65%);      /* #6366f1 - Electric Violet */

    /* WhatsApp Green */
    --color-whatsapp: hsl(142, 70%, 45%);    /* #22c55e - WhatsApp Green */
    --color-whatsapp-hover: hsl(142, 75%, 38%);
    --color-whatsapp-glow: hsla(142, 70%, 45%, 0.4);

    /* Cores de Texto (Alto Contraste WCAG AAA/AA) */
    --text-main: hsl(0, 0%, 100%);           /* #ffffff - Pure White */
    --text-muted: hsl(215, 20%, 75%);        /* #b0bec5 - Readable Grey */
    --text-dim: hsl(215, 15%, 55%);
    --text-dark: hsl(222, 47%, 8%);          /* Para texto sobre botões claros */

    /* Glassmorphism e Bordas */
    --glass-bg: hsla(222, 35%, 14%, 0.65);
    --glass-border: hsla(190, 100%, 50%, 0.2);
    --glass-shadow: 0 10px 30px -10px hsla(0, 0%, 0%, 0.5);
    --border-subtle: hsla(215, 20%, 65%, 0.15);

    /* Tipografia */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transições e Animações */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Z-Index Layout */
    --z-back: -1;
    --z-normal: 1;
    --z-sticky: 100;
    --z-modal: 1000;
}

/* Temas Específicos por Produto */
body.theme-haklai {
    --glass-border: hsla(265, 85%, 60%, 0.25);
}
body.theme-vewpass {
    --glass-border: hsla(330, 85%, 60%, 0.25);
}

/* --- 2. Reset & Acessibilidade Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Skip Link para NVDA/JAWS e Navegação por Teclado */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--color-primary);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top var(--transition-fast);
    text-decoration: none;
    box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.5);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--text-main);
}

/* Indicadores de Foco Rigorosos (WCAG 2.1 AA/AAA) */
:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 4px;
}

/* Utilitários Gerais */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.justify-center {
    justify-content: center !important;
}

.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }

.accent-text {
    color: var(--color-primary);
}

.text-dim {
    color: var(--text-dim);
}

/* --- 3. Tipografia Premium --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 700;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: hsla(190, 100%, 50%, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.badge-purple {
    background: hsla(265, 85%, 60%, 0.1);
    border-color: hsla(265, 85%, 60%, 0.3);
    color: var(--color-purple);
}

.badge-pink {
    background: hsla(330, 85%, 60%, 0.1);
    border-color: hsla(330, 85%, 60%, 0.3);
    color: var(--color-pink);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 3rem auto;
}

/* --- 4. Botões de Ação & Micro-animações --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.15rem;
    border-radius: 14px;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 16px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-primary-glow);
    filter: brightness(1.1);
}

.btn-purple {
    background: linear-gradient(135deg, var(--color-purple) 0%, hsl(280, 85%, 45%) 100%);
    color: var(--text-main);
    font-weight: 700;
    box-shadow: 0 4px 20px var(--color-purple-glow);
}

.btn-purple:hover, .btn-purple:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-purple-glow);
    filter: brightness(1.15);
}

.btn-pink {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-violet) 100%);
    color: var(--text-main);
    font-weight: 700;
    box-shadow: 0 4px 20px var(--color-pink-glow);
}

.btn-pink:hover, .btn-pink:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-pink-glow);
    filter: brightness(1.15);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover, .btn-secondary:focus {
    background: var(--bg-card-hover);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover, .btn-outline:focus {
    background: hsla(190, 100%, 50%, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--text-main);
    font-weight: 700;
    box-shadow: 0 4px 20px var(--color-whatsapp-glow);
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
    background: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-whatsapp-glow);
}

/* Efeito Destaque: Botão a piscar subtilmente */
.pulse-button {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 hsla(190, 100%, 50%, 0.7); }
    70% { box-shadow: 0 0 0 14px hsla(190, 100%, 50%, 0); }
    100% { box-shadow: 0 0 0 0 hsla(190, 100%, 50%, 0); }
}

.btn-purple.pulse-button {
    animation: pulseGlowPurple 2.5s infinite;
}

@keyframes pulseGlowPurple {
    0% { box-shadow: 0 0 0 0 hsla(265, 85%, 60%, 0.7); }
    70% { box-shadow: 0 0 0 14px hsla(265, 85%, 60%, 0); }
    100% { box-shadow: 0 0 0 0 hsla(265, 85%, 60%, 0); }
}

.btn-pink.pulse-button {
    animation: pulseGlowPink 2.5s infinite;
}

@keyframes pulseGlowPink {
    0% { box-shadow: 0 0 0 0 hsla(330, 85%, 60%, 0.7); }
    70% { box-shadow: 0 0 0 14px hsla(330, 85%, 60%, 0); }
    100% { box-shadow: 0 0 0 0 hsla(330, 85%, 60%, 0); }
}

/* --- 5. Header & Sticky Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    transition: all var(--transition-smooth);
    padding: 1.25rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: hsla(222, 47%, 6%, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px -10px hsla(0, 0%, 0%, 0.7);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link:focus {
    color: var(--color-primary);
}

body.theme-haklai .nav-link:hover { color: var(--color-purple); }
body.theme-vewpass .nav-link:hover { color: var(--color-pink); }

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

.status-dot {
    font-size: 0.7rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem;
    box-shadow: var(--glass-shadow);
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
}

.mobile-cta-li {
    margin-top: 1rem;
}

/* --- 6. Secção Hero --- */
.hero-section {
    position: relative;
    padding: 8rem 0 5rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-back);
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.orb-1 { width: 500px; height: 500px; background: var(--color-primary); top: -100px; right: -100px; }
.orb-2 { width: 600px; height: 600px; background: var(--color-accent); bottom: -150px; left: -150px; }
.orb-purple { width: 550px; height: 550px; background: var(--color-purple); top: -100px; right: -100px; }
.orb-gold { width: 550px; height: 550px; background: var(--color-gold); bottom: -150px; left: -150px; }
.orb-pink { width: 550px; height: 550px; background: var(--color-pink); top: -100px; right: -100px; }
.orb-violet { width: 550px; height: 550px; background: var(--color-violet); bottom: -150px; left: -150px; }

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, hsla(215, 20%, 65%, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, hsla(215, 20%, 65%, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-container-centered {
    max-width: 900px;
    margin: 0 auto;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-main) 0%, hsl(190, 100%, 80%) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.theme-haklai .hero-title {
    background: linear-gradient(135deg, var(--text-main) 0%, hsl(265, 100%, 80%) 50%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.theme-vewpass .hero-title {
    background: linear-gradient(135deg, var(--text-main) 0%, hsl(330, 100%, 80%) 50%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-container-centered .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-microcopy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: hsla(190, 100%, 50%, 0.08);
    border-left: 3px solid var(--color-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.border-purple { border-color: var(--color-purple) !important; background: hsla(265, 85%, 60%, 0.08) !important; }
.border-pink { border-color: var(--color-pink) !important; background: hsla(330, 85%, 60%, 0.08) !important; }
.border-gold { border-color: var(--color-gold) !important; }

.hero-price-text {
    font-size: 1.05rem;
    color: var(--text-main);
}

.hero-price-text strong {
    color: var(--color-primary);
    font-size: 1.2rem;
}

body.theme-haklai .hero-price-text strong { color: var(--color-purple); }
body.theme-vewpass .hero-price-text strong { color: var(--color-pink); }

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
}

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

/* Hero Visual Showcase */
.mockup-showcase {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-laptop-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.7);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    background: #000;
}

.border-purple-glow { border-color: var(--color-purple); box-shadow: 0 20px 40px var(--color-purple-glow); }
.border-pink-glow { border-color: var(--color-pink); box-shadow: 0 20px 40px var(--color-pink-glow); }

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-phone-wrapper {
    position: absolute;
    right: -20px;
    bottom: -40px;
    z-index: 2;
    width: 42%;
    max-width: 260px;
    border-radius: 24px;
    box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.8);
    border: 2px solid var(--color-primary);
    overflow: hidden;
    background: #000;
}

.floating-anim { animation: float 6s ease-in-out infinite; }
.floating-anim-reverse { animation: floatReverse 7s ease-in-out infinite; }

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

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: var(--glass-shadow);
}

.status-card {
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 3;
    max-width: 250px;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.dot-green { width: 10px; height: 10px; background: var(--color-whatsapp); border-radius: 50%; box-shadow: 0 0 10px var(--color-whatsapp); }
.dot-gold { width: 10px; height: 10px; background: var(--color-gold); border-radius: 50%; box-shadow: 0 0 10px var(--color-gold); }
.dot-pink { width: 10px; height: 10px; background: var(--color-pink); border-radius: 50%; box-shadow: 0 0 10px var(--color-pink); }
.dot-red { width: 12px; height: 12px; background: #ef4444; border-radius: 50%; display: inline-block; }
.dot-yellow { width: 12px; height: 12px; background: #eab308; border-radius: 50%; display: inline-block; margin: 0 4px; }

.status-title { font-size: 0.85rem; font-weight: 700; color: var(--text-main); }
.status-body { font-size: 0.8rem; color: var(--text-muted); }

/* --- 7. Secção Produtos (Ecossistema LINX Institucional) --- */
.products-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.6);
}

.card-clinq:hover { border-color: var(--color-primary); box-shadow: 0 20px 40px var(--color-primary-glow); }
.card-haklai:hover { border-color: var(--color-purple); box-shadow: 0 20px 40px var(--color-purple-glow); }
.card-vewpass:hover { border-color: var(--color-pink); box-shadow: 0 20px 40px var(--color-pink-glow); }

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    text-transform: uppercase;
}

.card-clinq .product-badge { background: hsla(190, 100%, 50%, 0.15); color: var(--color-primary); }
.card-haklai .product-badge { background: hsla(265, 85%, 60%, 0.15); color: var(--color-purple); }
.card-vewpass .product-badge { background: hsla(330, 85%, 60%, 0.15); color: var(--color-pink); }

.product-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.product-title { font-size: 2rem; margin-bottom: 0.4rem; }
.product-tagline { font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1rem; min-height: 44px; }
.product-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }

.product-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
}

.product-highlights li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }

/* --- 8. Secção WordPress Custom Plugins & Código --- */
.wordpress-section {
    padding: 6rem 0;
    background: var(--bg-main);
}

.wp-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.wp-features-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.wp-feature-item { display: flex; gap: 1rem; }
.wp-icon { font-size: 2rem; background: var(--bg-card); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 14px; flex-shrink: 0; border: 1px solid var(--border-subtle); }
.wp-feature-item h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.wp-feature-item p { color: var(--text-muted); font-size: 0.95rem; }

.wp-code-panel {
    background: #090d16;
    border: 1px solid hsla(221, 83%, 53%, 0.3);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.8);
}

.panel-header { margin-bottom: 1rem; display: flex; align-items: center; }
.panel-title { color: var(--text-muted); font-family: monospace; font-size: 0.85rem; margin-left: 10px; }
.code-snippet { font-family: 'Courier New', Courier, monospace; font-size: 0.9rem; line-height: 1.5; color: #e2e8f0; overflow-x: auto; }
.code-comment { color: #64748b; font-style: italic; }
.code-keyword { color: #f43f5e; font-weight: bold; }
.code-class { color: #38bdf8; }
.code-func { color: #a855f7; }
.code-string { color: #10b981; }

.panel-badge-glow {
    margin-top: 1.5rem;
    background: hsla(221, 83%, 53%, 0.15);
    border: 1px solid var(--color-accent);
    color: #38bdf8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

/* --- 9. Secção Proposta de Valor & Preços (Clinq) --- */
.value-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.toggle-label { font-weight: 600; font-size: 1.1rem; color: var(--text-muted); cursor: pointer; transition: color var(--transition-fast); }
.toggle-label.active { color: var(--text-main); }

.discount-badge {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.pricing-toggle-btn {
    width: 64px;
    height: 34px;
    background: var(--bg-card);
    border: 2px solid var(--color-primary);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    padding: 2px;
}

.toggle-circle {
    width: 26px;
    height: 26px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
    transition: transform var(--transition-smooth);
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.pricing-toggle-btn[aria-pressed="false"] .toggle-circle { transform: translateX(-30px); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover { transform: translateY(-8px); border-color: var(--glass-border); box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.6); }

.featured-card {
    background: linear-gradient(145deg, hsla(222, 35%, 15%, 0.9) 0%, hsla(221, 83%, 20%, 0.4) 100%);
    border: 2px solid var(--color-primary);
    box-shadow: 0 15px 35px var(--color-primary-glow);
}

.featured-ribbon {
    position: absolute;
    top: 18px;
    right: -32px;
    background: var(--color-primary);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px hsla(0, 0%, 0%, 0.3);
}

.plan-name { font-size: 1.5rem; margin-bottom: 0.5rem; }
.plan-desc { color: var(--text-muted); font-size: 0.95rem; min-height: 44px; }
.plan-price { margin: 2rem 0; display: flex; align-items: baseline; flex-wrap: wrap; }
.currency { font-size: 1.8rem; font-weight: 700; color: var(--color-primary); }
.amount { font-size: 3.5rem; font-weight: 800; color: var(--text-main); line-height: 1; margin: 0 0.2rem; }
.period { color: var(--text-muted); font-size: 1.1rem; }
.sub-price { width: 100%; font-size: 0.85rem; color: var(--color-primary); margin-top: 0.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; flex-grow: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text-muted); }
.check-icon { color: var(--color-primary); font-weight: 800; }

body.theme-haklai .check-icon { color: var(--color-purple); }
body.theme-vewpass .check-icon { color: var(--color-pink); }

/* Destaque para Taxa de Onboarding (€75 / Grátis no Premium) */
.onboarding-notice-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--color-primary);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    box-shadow: var(--glass-shadow);
}

.onboarding-icon { font-size: 3rem; background: hsla(190, 100%, 50%, 0.1); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 20px; flex-shrink: 0; }
.onboarding-text h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.onboarding-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.onboarding-highlight-pill { display: inline-block; background: hsla(190, 100%, 50%, 0.15); border: 1px solid var(--color-primary); color: var(--text-main); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem; }
.onboarding-highlight-pill strong { color: var(--color-primary); font-weight: 800; }

.coffee-comparison-banner {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--glass-shadow);
}

.coffee-icon-box { font-size: 3rem; background: hsla(190, 100%, 50%, 0.1); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 20px; flex-shrink: 0; }
.coffee-text h4 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--text-main); }
.coffee-text p { color: var(--text-muted); font-size: 0.95rem; }

/* --- 10. Grelhas 3 Colunas (Haklai & VewPass) --- */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

body.theme-haklai .feature-box:hover { border-color: var(--color-purple); }
body.theme-vewpass .feature-box:hover { border-color: var(--color-pink); }

.box-icon { font-size: 3rem; }

/* Hierarquia Haklai */
.hierarchy-tree-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hierarchy-step {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition-smooth);
}

.hierarchy-step:hover, .active-step {
    border-color: var(--color-purple);
    background: hsla(265, 85%, 60%, 0.08);
    transform: scale(1.02);
}

.step-num { width: 44px; height: 44px; background: var(--color-purple); color: var(--text-main); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 15px var(--color-purple-glow); }
.step-content h4 { font-size: 1.2rem; margin-bottom: 0.25rem; color: var(--text-main); }
.step-content p { color: var(--text-muted); font-size: 0.95rem; }
.hierarchy-connector { font-size: 1.5rem; color: var(--color-purple); font-weight: bold; }

/* --- 11. Secção Benefícios Clave --- */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.benefits-grid { display: flex; flex-direction: column; gap: 4rem; }
.benefit-card { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 3rem; overflow: hidden; }
.benefit-card.reverse-layout { grid-template-columns: 1.1fr 0.9fr; }
.benefit-img-wrapper { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 30px hsla(0, 0%, 0%, 0.5); border: 1px solid var(--glass-border); }
.phone-wrapper-center { display: flex; justify-content: center; background: radial-gradient(circle at center, hsla(190, 100%, 50%, 0.15) 0%, transparent 70%); border: none; box-shadow: none; }
.phone-img-small { border-radius: 24px; border: 2px solid var(--color-primary); box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.8); }
body.theme-haklai .phone-img-small { border-color: var(--color-purple); }
body.theme-vewpass .phone-img-small { border-color: var(--color-pink); }
.benefit-img { width: 100%; height: auto; display: block; }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-title { font-size: 2rem; margin-bottom: 1rem; }
.benefit-text { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.benefit-list li { color: var(--text-muted); font-size: 0.95rem; }
.benefit-list strong { color: var(--text-main); }

/* --- 12. Secção Setores --- */
.sectors-section { padding: 6rem 0; background: var(--bg-main); }
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.sector-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 2rem; transition: all var(--transition-smooth); }
.sector-item:hover { transform: translateY(-5px); border-color: var(--color-primary); background: var(--bg-card-hover); }
body.theme-haklai .sector-item:hover { border-color: var(--color-purple); }
body.theme-vewpass .sector-item:hover { border-color: var(--color-pink); }
.sector-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.sector-name { font-size: 1.3rem; margin-bottom: 0.75rem; }
.sector-desc { color: var(--text-muted); font-size: 0.95rem; }

/* --- 13. Banner Acessibilidade --- */
.a11y-banner {
    background: linear-gradient(90deg, hsla(221, 83%, 20%, 0.4) 0%, hsla(190, 100%, 20%, 0.3) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2.5rem 0;
}
.a11y-container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.a11y-icon { font-size: 3.5rem; color: var(--color-primary); }
.a11y-text { flex: 1; min-width: 300px; }
.a11y-text h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.a11y-text p { color: var(--text-muted); font-size: 0.95rem; }
.a11y-badge-group { display: flex; gap: 0.75rem; }
.a11y-tag { background: var(--bg-main); border: 1px solid var(--color-primary); color: var(--color-primary); padding: 0.5rem 1rem; border-radius: 8px; font-weight: 700; font-size: 0.85rem; }

/* --- 14. Secção CTA (Fecho) --- */
.cta-section { padding: 6rem 0; background: var(--bg-secondary); position: relative; overflow: hidden; }
.cta-bg-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 400px; background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%); filter: blur(80px); z-index: var(--z-back); }
.glow-purple { background: radial-gradient(circle, var(--color-purple-glow) 0%, transparent 70%); }
.glow-pink { background: radial-gradient(circle, var(--color-pink-glow) 0%, transparent 70%); }
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 28px; padding: 4rem 3rem; box-shadow: var(--glass-shadow); max-width: 860px; margin: 0 auto; }
.cta-badge { margin-bottom: 1rem; }
.cta-title { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1.25rem; }
.cta-description { font-size: 1.15rem; color: var(--text-muted); max-width: 640px; margin: 0 auto 2.5rem auto; }
.cta-action-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; }
.cta-website-link { font-size: 1rem; color: var(--text-muted); }
.cta-website-link a { color: var(--color-primary); font-weight: 700; text-decoration: none; margin-left: 0.5rem; }
body.theme-haklai .cta-website-link a { color: var(--color-purple); }
body.theme-vewpass .cta-website-link a { color: var(--color-pink); }
.cta-website-link a:hover { text-decoration: underline; }

/* --- 15. Modal Cotação --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: hsla(222, 47%, 4%, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: var(--z-modal); align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; transition: opacity var(--transition-smooth); }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content { width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; padding: 2.5rem; border-radius: 24px; position: relative; animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes modalSlideIn { from { transform: scale(0.9) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.modal-title { font-size: 1.6rem; color: var(--text-main); }
.modal-close-btn { background: transparent; border: none; color: var(--text-muted); font-size: 2rem; cursor: pointer; line-height: 1; padding: 0.25rem 0.5rem; border-radius: 8px; }
.modal-close-btn:hover, .modal-close-btn:focus { color: var(--color-primary); background: hsla(0, 0%, 100%, 0.05); }
.modal-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.4rem; }
.required { color: var(--color-primary); }
body.theme-haklai .required { color: var(--color-purple); }
body.theme-vewpass .required { color: var(--color-pink); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.75rem 1rem; background: var(--bg-main); border: 1px solid var(--border-subtle); border-radius: 10px; color: var(--text-main); font-family: var(--font-body); font-size: 1rem; transition: border-color var(--transition-fast); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px hsla(190, 100%, 50%, 0.2); }
body.theme-haklai .form-input:focus, body.theme-haklai .form-select:focus, body.theme-haklai .form-textarea:focus { border-color: var(--color-purple); box-shadow: 0 0 0 3px hsla(265, 85%, 60%, 0.2); }
body.theme-vewpass .form-input:focus, body.theme-vewpass .form-select:focus, body.theme-vewpass .form-textarea:focus { border-color: var(--color-pink); box-shadow: 0 0 0 3px hsla(330, 85%, 60%, 0.2); }
.form-actions { margin-top: 2rem; }

/* --- 16. Rodapé --- */
.site-footer { background: var(--bg-main); border-top: 1px solid var(--border-subtle); padding: 5rem 0 2rem 0; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-tagline { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 340px; }
.footer-social { display: flex; gap: 1rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 10px; text-decoration: none; font-size: 1.2rem; transition: all var(--transition-fast); }
.social-link:hover { border-color: var(--color-primary); transform: translateY(-3px); }
.footer-heading { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--text-main); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--color-primary); }
body.theme-haklai .footer-links a:hover { color: var(--color-purple); }
body.theme-vewpass .footer-links a:hover { color: var(--color-pink); }
.footer-address p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-address a { color: var(--text-main); text-decoration: none; }
.footer-address a:hover { color: var(--color-primary); text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 2rem; }
.bottom-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { display: flex; align-items: center; gap: 0.75rem; }
.footer-legal a { color: var(--text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--color-primary); }

/* --- 17. Responsividade --- */
@media (max-width: 1024px) {
    .hero-container, .wp-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-subtitle, .hero-microcopy { margin-left: auto; margin-right: auto; }
    .hero-cta-group, .trust-indicators { justify-content: center; }
    .benefit-card, .benefit-card.reverse-layout { grid-template-columns: 1fr; padding: 2rem; }
    .benefit-info { order: 2; }
    .benefit-img-wrapper { order: 1; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .navbar-nav, .navbar-actions .btn { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-section { padding: 6rem 0 3rem 0; }
    .mockup-phone-wrapper { right: 10px; bottom: -20px; width: 48%; }
    .status-card { top: 10px; left: 10px; padding: 0.75rem 1rem; }
    .pricing-card { padding: 1.75rem; }
    .coffee-comparison-banner, .onboarding-notice-box { flex-direction: column; text-align: center; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .bottom-container { flex-direction: column; text-align: center; }
}
