/* ==========================================================================
   VEROTECH TI — ULTRA-MODERN HIGH-END STYLESHEET
   Design System: Deep Slate / Sapphire Neon / Clean Glassmorphism
   100% Responsive: Desktops, Tablets, Smartphones (iOS & Android)
   ========================================================================== */

/* --- 1. DESIGN TOKENS & VARIÁVEIS --- */
:root {
    /* Cores de Fundo */
    --bg-main: #090c0e;
    --bg-surface: #101619;
    --bg-card: #151d20;
    --bg-card-hover: #1b272b;
    --bg-terminal: #080b0c;

    /* Cores de Marca & Gradientes */
    --primary: #0062ff;
    --primary-hover: #004ecc;
    --primary-glow: rgba(0, 98, 255, 0.35);
    --cyan: #00d2ff;
    --cyan-glow: rgba(0, 210, 255, 0.25);
    --champagne: #d8b77a;
    --champagne-soft: rgba(216, 183, 122, 0.14);
    --grad-primary: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%);
    --grad-accent: linear-gradient(135deg, #00d2ff 0%, #3b82f6 100%);

    /* Bordas & Divisores Sutis */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-card: rgba(255, 255, 255, 0.1);
    --border-focus: rgba(0, 210, 255, 0.5);

    /* Textos */
    --text-white: #ffffff;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Status */
    --status-green: #10b981;
    --status-yellow: #f59e0b;
    --status-red: #ef4444;

    /* Tipografia */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Sombras & Transições */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(0, 98, 255, 0.2);
    --trans-fast: 0.2s ease;
    --trans-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background:
        radial-gradient(ellipse at 8% 4%, rgba(255, 255, 255, 0.13), transparent 25%),
        radial-gradient(ellipse at 88% 25%, rgba(0, 98, 255, 0.12), transparent 29%),
        linear-gradient(115deg, #080a0b 0%, #151d21 48%, #080a0b 100%);
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(216, 183, 122, 0.045), transparent 26%), linear-gradient(120deg, rgba(255, 255, 255, 0.018), transparent 30%, rgba(255, 255, 255, 0.008));
    pointer-events: none;
    z-index: 0;
}

body.no-scroll {
    overflow: hidden;
}

/* Scrollbar estilizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--trans-fast);
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
}

/* --- 3. LAYOUT & UTILITÁRIOS --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding: 5.5rem 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--champagne);
    background: var(--champagne-soft);
    border: 1px solid rgba(216, 183, 122, 0.24);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    overflow-wrap: anywhere;
}

.section-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 4. BOTÕES MODERNOS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--trans-smooth);
    border: none;
    text-align: center;
    touch-action: manipulation;
    min-height: 46px;
}

.btn-lg {
    padding: 0.95rem 1.85rem;
    font-size: 1.02rem;
    min-height: 50px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0b7cff 0%, #26d0ff 100%);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(38, 208, 255, 0.18), 0 4px 18px rgba(11, 124, 255, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
    transform: translateX(-150%);
    transition: transform 0.8s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 34px rgba(38, 208, 255, 0.22), 0 6px 24px rgba(11, 124, 255, 0.3);
}

.btn-primary:hover::before {
    transform: translateX(150%);
}

.service-card,
.plan-card,
.feature-card,
.testimonial-card,
.process-card,
.contact-box,
.faq-item {
    position: relative;
    isolation: isolate;
}

.service-card::before,
.plan-card::before,
.feature-card::before,
.testimonial-card::before,
.process-card::before,
.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 210, 255, 0.18), transparent 38%), linear-gradient(135deg, rgba(255,255,255,0.04), transparent 45%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
    pointer-events: none;
}

.service-card:hover::before,
.plan-card:hover::before,
.feature-card:hover::before,
.testimonial-card:hover::before,
.process-card:hover::before,
.contact-box:hover::before {
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform, opacity;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 98, 255, 0.4);
    color: var(--text-white);
}

.btn-outline:hover {
    background: rgba(0, 98, 255, 0.12);
    border-color: var(--cyan);
}

.btn-card {
    background: var(--bg-surface);
    color: var(--text-white);
    border: 1px solid var(--border-subtle);
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.btn-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-header {
    background: rgba(0, 98, 255, 0.12);
    border: 1px solid rgba(0, 98, 255, 0.3);
    color: var(--cyan);
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    min-height: 38px;
}

.btn-header:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* --- 5. SITE HEADER & NAVEGAÇÃO --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 12, 14, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: var(--trans-smooth);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 98, 255, 0.35));
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.logo-name {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: var(--text-white);
}

.logo-badge {
    font-weight: 800;
    font-size: 0.8rem;
    background: var(--grad-primary);
    color: #ffffff;
    padding: 0.12rem 0.45rem;
    border-radius: 4px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Toggle Menu Hamburguer */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.toggle-bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--trans-fast);
}

/* --- 6. MOBILE DRAWER (MENU MOBILE DESLIZANTE) --- */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #0b111e;
    border-left: 1px solid var(--border-subtle);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-white);
}

.drawer-logo strong {
    color: var(--cyan);
}

.drawer-logo-img {
    height: 32px;
    width: auto;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
    flex-grow: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--trans-fast);
}

.drawer-link i {
    font-size: 1.1rem;
    color: var(--cyan);
    width: 22px;
}

.drawer-link:hover,
.drawer-link.active {
    background: rgba(0, 98, 255, 0.12);
    color: var(--text-white);
}

.drawer-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.drawer-contact-info {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.drawer-contact-info i {
    color: var(--cyan);
    margin-right: 0.4rem;
}

/* --- 7. HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: min(760px, calc(100vh - 4.5rem));
    padding-top: 5.8rem;
    padding-bottom: 6.2rem;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(5, 8, 12, 0.96) 0%, rgba(5, 8, 12, 0.82) 42%, rgba(5, 8, 12, 0.55) 100%), url("assets/planodefundo.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-bg-grid {
    position: absolute;
    inset: -8% -4% -8% -4%;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(20, 87, 94, 0.17), transparent 55%);
    background-size: 44px 44px, 44px 44px, 100% 100%;
    mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
    opacity: 0.42;
    animation: gridDrift 18s ease-in-out infinite alternate;
}

@keyframes gridDrift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(0, -12px, 0) scale(1.04); }
}

.hero-grid-cell {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.75), rgba(0, 98, 255, 0.2));
    box-shadow: 0 0 7px rgba(0, 210, 255, 0.2);
    transform: scale(0.8);
    animation: heroCellFloat 5s ease-in-out infinite alternate;
}

@keyframes heroCellFloat {
    0% { transform: translateY(0) scale(0.8); opacity: 0.25; }
    50% { transform: translateY(-18px) scale(1); opacity: 0.95; }
    100% { transform: translateY(12px) scale(0.85); opacity: 0.5; }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(145px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(8, 83, 96, 0.16);
    top: -120px;
    left: -120px;
}

.hero-glow-2 {
    width: 450px;
    height: 450px;
    background: rgba(216, 183, 122, 0.07);
    bottom: -100px;
    right: -100px;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4.5rem;
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 98, 255, 0.08);
    border: 1px solid rgba(0, 98, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    color: var(--cyan);
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--status-green);
    box-shadow: 0 0 8px var(--status-green);
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    max-width: 700px;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: var(--text-white);
    margin-bottom: 1.4rem;
}

.hero-subtitle {
    max-width: 590px;
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 560px;
}

.human-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.8rem;
}

.proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.proof-pill i {
    color: var(--cyan);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-cta-note {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: -1.55rem;
    margin-bottom: 2rem;
    color: var(--text-dim);
    font-size: 0.78rem;
}

.hero-cta-note i {
    color: var(--status-green);
    font-size: 0.72rem;
}

.hero-trust-bar {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    flex-wrap: wrap;
    max-width: 600px;
}

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

.trust-item i {
    color: var(--cyan);
}

/* Card Visual Terminal Monitor */
.hero-visual {
    width: 100%;
}

.hero-photo-card {
    position: relative;
    margin: 0 0 1rem;
    min-height: 178px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}

.hero-photo-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center 58%;
    filter: saturate(0.86) contrast(1.05);
}

.hero-photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(5, 8, 9, 0.86) 100%);
    pointer-events: none;
}

.hero-photo-card figcaption {
    position: absolute;
    z-index: 1;
    left: 1rem;
    bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-photo-card figcaption i {
    color: var(--champagne);
}

.tech-monitor-card {
    background: var(--bg-terminal);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 28px rgba(0, 98, 255, 0.1), inset 0 1px 0 rgba(255,255,255,0.08);
    overflow: hidden;
    animation: floatCard 7s ease-in-out infinite;
    position: relative;
}

.tech-monitor-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 45%, transparent 100%);
    transform: translateX(-120%);
    animation: sheen 7s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes sheen {
    0%, 100% { transform: translateX(-120%); }
    50% { transform: translateX(120%); }
}

.tech-monitor-header {
    background: var(--bg-card);
    padding: 0.8rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.ctrl {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.ctrl-red { background: var(--status-red); }
.ctrl-yellow { background: var(--status-yellow); }
.ctrl-green { background: var(--status-green); }

.monitor-title {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.monitor-status {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--status-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.tech-monitor-body {
    padding: 1.4rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.4;
    word-break: break-word;
}

.t-label,
.t-val {
    min-width: 0;
    overflow-wrap: anywhere;
}

.t-tag { color: var(--cyan); }
.t-icon { color: var(--status-green); font-size: 0.85rem; }
.t-label { color: var(--text-muted); }
.t-val { color: var(--text-white); font-weight: 600; }

.monitor-callout {
    margin-top: 0.8rem;
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-sans);
}

.callout-icon {
    font-size: 1.4rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.callout-content strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-white);
}

.callout-content p {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- 8. STATS SECTION --- */
.stats-section {
    background: linear-gradient(90deg, rgba(16, 22, 25, 0.96), rgba(12, 19, 21, 0.96));
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2.2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.stat-title {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- 9. SERVIÇOS SECTION --- */
.service-filters {
    display: inline-flex;
    background: var(--bg-surface);
    padding: 0.35rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    margin-top: 1.5rem;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-pill {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans-fast);
}

.filter-pill.active,
.filter-pill:hover {
    background: var(--primary);
    color: #ffffff;
}

.process-section {
    background: linear-gradient(180deg, rgba(22, 32, 34, 0.62) 0%, rgba(9, 13, 14, 0.32) 100%);
}

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

.process-card {
    position: relative;
    padding: 2rem 1.6rem 1.7rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(17, 25, 38, 0.9) 0%, rgba(13, 20, 31, 0.88) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 98, 255, 0.12);
}

.process-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,210,255,0.2), rgba(0,98,255,0.8), rgba(0,210,255,0.2));
}

.process-number {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 98, 255, 0.18), rgba(0, 210, 255, 0.08));
    color: var(--cyan);
    font-size: 1.4rem;
    margin-bottom: 1.15rem;
    border: 1px solid rgba(0, 210, 255, 0.18);
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.65rem;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    align-items: stretch;
    counter-reset: service-card;
}

.service-proof-strip {
    display: grid;
    grid-template-columns: minmax(190px, 0.75fr) 1.35fr auto;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    margin: 0 0 2rem;
    padding: 0.8rem;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(0, 210, 255, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(216, 183, 122, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(10, 15, 18, 0.96) 0%, rgba(16, 26, 31, 0.97) 42%, rgba(10, 14, 16, 0.96) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.service-proof-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.04), transparent 36%, rgba(255,255,255,0.02));
    pointer-events: none;
}

.service-proof-image {
    position: relative;
    height: 132px;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 6px);
}

.service-proof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78);
    transition: transform 0.5s ease;
}

.service-proof-strip:hover .service-proof-image img {
    transform: scale(1.05);
}

.photo-label {
    position: absolute;
    left: 0.75rem;
    bottom: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    max-width: calc(100% - 1.5rem);
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 5px;
    background: rgba(7, 11, 13, 0.78);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: anywhere;
    backdrop-filter: blur(7px);
}

.photo-label i {
    color: var(--champagne);
    flex-shrink: 0;
}

.proof-kicker {
    color: #b9e8ff;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-shadow: 0 0 22px rgba(87, 195, 255, 0.35);
}

.service-proof-copy h3 {
    margin: 0.35rem 0 0.45rem;
    color: var(--text-white);
    font-size: 1.2rem;
    line-height: 1.3;
}

.service-proof-copy p {
    max-width: 540px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.service-proof-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(216, 183, 122, 0.28);
    border-radius: var(--radius-sm);
    color: var(--champagne);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.service-proof-link:hover {
    background: var(--champagne-soft);
    transform: translateY(-2px);
}

.service-card {
    position: relative;
    counter-increment: service-card;
    background:
        radial-gradient(circle at top left, rgba(0, 210, 255, 0.08), transparent 30%),
        linear-gradient(160deg, rgba(26, 37, 39, 0.98) 0%, rgba(12, 18, 20, 0.98) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 1.85rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(125, 211, 252, 0.35);
    background:
        radial-gradient(circle at top left, rgba(0, 210, 255, 0.12), transparent 25%),
        linear-gradient(160deg, rgba(30, 45, 48, 1) 0%, rgba(14, 22, 24, 1) 100%);
    box-shadow: 0 22px 44px rgba(0, 98, 255, 0.12), 0 0 0 1px rgba(125, 211, 252, 0.08);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    min-height: 50px;
    margin-bottom: 1.2rem;
}

.card-badge {
    max-width: calc(100% - 54px);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b9e8ff;
    background: rgba(0, 210, 255, 0.06);
    padding: 0.22rem 0.56rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 210, 255, 0.18);
    line-height: 1.35;
    overflow-wrap: anywhere;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.card-badge.highlight {
    color: #facc15;
    background: rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.25);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 98, 255, 0.18), rgba(0, 210, 255, 0.10));
    border: 1px solid rgba(0, 210, 255, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cyan);
    flex: 0 0 48px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, box-shadow 0.35s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-card:hover .card-icon {
    transform: rotate(-5deg) scale(1.06);
    background: rgba(0, 210, 255, 0.18);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.6rem;
    min-height: 3.6rem;
    line-height: 1.45;
}

.card-title::before {
    content: "0" counter(service-card);
    display: block;
    color: var(--champagne);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    margin-bottom: 0.45rem;
}

.card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 7.7rem;
    flex-grow: 1;
}

.card-price {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.price-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
}

.price-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-val small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* --- 10. PLANOS MENSAIS --- */
.plans-section {
    background: linear-gradient(180deg, #101719 0%, #0c1113 100%);
}

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

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    transition: var(--trans-smooth);
}

.plan-card:hover {
    border-color: rgba(0, 210, 255, 0.4);
    transform: translateY(-7px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 210, 255, 0.08);
}

.plan-card.featured {
    background: linear-gradient(180deg, #1b292b 0%, #10191b 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 98, 255, 0.25);
    transform: scale(1.03);
}

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

.plan-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--champagne);
    color: #17130c;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(216, 183, 122, 0.14);
    white-space: nowrap;
    z-index: 2;
}

.plan-type {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan);
    display: block;
    margin-bottom: 0.4rem;
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.plan-tagline {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 45px;
}

.plan-price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.plan-price-box .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: 0.2rem;
}

.plan-price-box .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.plan-price-box .cents {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.plan-price-box .freq {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.4rem;
}

.plan-price-box.custom {
    padding: 0.8rem 0;
}

.custom-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--cyan);
}

.plan-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
    flex-grow: 1;
}

.plan-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.93rem;
    color: var(--text-main);
}

.plan-checklist li i {
    color: var(--status-green);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.plan-price-note {
    margin-top: -0.6rem;
    margin-bottom: 1.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
}

.plan-compare-wrap,
.plan-benefits-wrap {
    margin-top: 3rem;
}

.section-subhead {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: clamp(1.7rem, 2vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-top: 0.5rem;
}

.plan-compare-table-wrap {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.plan-compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.plan-compare-table th,
.plan-compare-table td {
    padding: 1rem 0.9rem;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    color: var(--text-main);
}

.plan-compare-table th {
    background: rgba(12, 17, 19, 0.9);
    color: var(--text-white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.plan-compare-table th:first-child,
.plan-compare-table td:first-child {
    text-align: left;
    min-width: 190px;
    font-weight: 600;
    color: var(--text-white);
}

.plan-compare-table td:last-child,
.plan-compare-table th:last-child {
    border-right: none;
}

.plan-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.plan-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.plan-benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-card);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.plan-benefit-item h4 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.plan-benefit-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 11. DIAGNÓSTICO INTERATIVO --- */
.diag-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-card);
}

.diag-intro {
    margin-bottom: 2rem;
}

.diag-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.diag-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.diag-step {
    margin-bottom: 1.8rem;
}

.step-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.step-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.diag-chip {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 0.65rem 1.15rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--trans-fast);
}

.diag-chip:hover {
    border-color: var(--cyan);
    color: #ffffff;
}

.diag-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 2px 10px var(--primary-glow);
}

.diag-result-card {
    background: #090e1a;
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-card);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--cyan);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.result-text {
    font-size: 0.96rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* --- 12. DIFERENCIAIS --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.security-proof-block {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    gap: 2.2rem;
    align-items: center;
    position: relative;
    margin: 0 auto 2.5rem;
    max-width: 940px;
    padding: 1rem;
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(0, 210, 255, 0.15), transparent 28%),
        radial-gradient(circle at bottom right, rgba(216, 183, 122, 0.1), transparent 32%),
        linear-gradient(135deg, rgba(10, 15, 18, 0.96) 0%, rgba(16, 26, 31, 0.97) 42%, rgba(10, 14, 16, 0.96) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.security-proof-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.04), transparent 36%, rgba(255,255,255,0.02));
    pointer-events: none;
}

.security-proof-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 6px);
}

.security-proof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.04);
    transition: transform 0.55s ease;
}

.security-proof-block:hover .security-proof-image img {
    transform: scale(1.04);
}

.security-proof-image .photo-label {
    bottom: 0.85rem;
}

.security-proof-copy {
    padding: 0.5rem 1rem 0.5rem 0;
}

.security-proof-copy h3 {
    margin: 0.45rem 0 0.6rem;
    color: var(--text-white);
    font-size: 1.55rem;
    line-height: 1.25;
}

.security-proof-copy p {
    max-width: 500px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #b9e8ff;
    font-size: 0.86rem;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(87, 195, 255, 0.25);
}

.text-link:hover {
    color: var(--text-white);
    transform: translateX(3px);
}

.feature-card {
    background: linear-gradient(180deg, rgba(19, 28, 46, 0.96) 0%, rgba(13, 20, 31, 0.96) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--trans-smooth);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 255, 0.36);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 210, 255, 0.05);
}

.feature-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-mono);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 13. DEPOIMENTOS --- */
.testimonials-section {
    background: linear-gradient(180deg, #101619 0%, #0b1012 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(19, 28, 46, 0.96) 0%, rgba(13, 20, 31, 0.96) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.stars {
    color: #facc15;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 3px;
}

.comment {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 1.8rem;
    font-style: italic;
}

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

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-white);
}

.info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- 14. FAQ ACCORDION --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--trans-fast);
}

.faq-item:hover {
    border-color: rgba(0, 210, 255, 0.25);
    box-shadow: 0 10px 24px rgba(0, 98, 255, 0.06);
}

.faq-item.active {
    border-color: rgba(0, 210, 255, 0.4);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.3rem 1.6rem;
    text-align: left;
    color: var(--text-white);
    font-size: 1.02rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question i {
    color: var(--cyan);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.15);
}

.faq-answer p {
    padding: 0 1.6rem 1.3rem 1.6rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* --- 15. CONTATO & FORMULÁRIO (LGPD) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.contact-desc {
    font-size: 1.02rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.mascot-intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 430px;
    margin: -0.5rem 0 1.5rem;
    padding: 0.65rem 0.85rem 0.65rem 0.5rem;
    border: 1px solid rgba(0, 98, 255, 0.16);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.52);
}

.mascot-intro img {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}

.mascot-kicker {
    display: block;
    margin-bottom: 0.25rem;
    color: #0b55bb;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.mascot-intro p {
    color: #45535a;
    font-size: 0.82rem;
    line-height: 1.5;
}

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

.contact-map-wrap {
    margin-top: 1rem;
    padding: 0.7rem;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    background: rgba(12, 18, 20, 0.72);
}

.contact-map-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0.35rem 0.7rem;
    color: var(--text-white);
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-map-heading span,
.contact-map-heading a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.contact-map-heading span i {
    color: var(--champagne);
}

.contact-map-heading a {
    color: var(--cyan);
    font-size: 0.74rem;
    font-weight: 600;
    text-align: right;
}

.contact-map-heading a:hover {
    color: var(--text-white);
}

.contact-map {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: calc(var(--radius-md) - 5px);
    filter: saturate(0.72) contrast(1.05);
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    overflow: hidden;
    transition: var(--trans-smooth);
}

.c-details {
    min-width: 0;
}

.contact-box:hover {
    border-color: rgba(0, 210, 255, 0.38);
    transform: translateX(4px) translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 98, 255, 0.08), 0 0 0 1px rgba(0, 210, 255, 0.05);
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(0, 98, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.c-label {
    display: block;
    font-size: 0.76rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
}

.c-val {
    display: block;
    font-size: 1rem;
    color: var(--text-white);
    margin-top: 0.1rem;
    word-break: break-word;
}

.c-badge {
    display: block;
    font-size: 0.76rem;
    color: var(--status-green);
    margin-top: 0.2rem;
}

.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.form-title-box {
    margin-bottom: 1.6rem;
}

.form-title-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.form-title-box h3 i {
    color: var(--cyan);
}

.form-title-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 1rem; /* 16px evita auto-zoom no iOS Safari */
    transition: var(--trans-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.input-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d2ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.15);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--text-dim);
}

.input-group select option {
    background: var(--bg-surface);
    color: var(--text-white);
}

/* LGPD Consent Checkbox */
.lgpd-consent-box {
    margin: 1.2rem 0 1.6rem;
}

.lgpd-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.lgpd-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.lgpd-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.lgpd-text strong {
    color: var(--cyan);
    font-weight: 600;
}

.form-feedback-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* --- 16. FOOTER --- */
.services-section,
.features-section,
.testimonials-section,
.contact-section {
    background: linear-gradient(112deg, #f3f5f6 0%, #ffffff 52%, #e8edf1 100%);
}

.services-section .section-title,
.features-section .section-title,
.testimonials-section .section-title,
.contact-section .contact-title {
    color: #11171a;
}

.services-section .section-desc,
.features-section .section-desc,
.testimonials-section .section-desc,
.contact-section .contact-desc {
    color: #3f4c53;
    font-weight: 500;
}

.plans-section,
.diag-section,
.faq-section {
    background: linear-gradient(120deg, #080a0b 0%, #111d24 52%, #080a0b 100%);
}

.stats-section {
    background: linear-gradient(110deg, #e8ecef 0%, #ffffff 50%, #dfe6eb 100%);
}

.stats-section .stat-number {
    background: linear-gradient(135deg, #0b4fcb 0%, #0062ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-section .stat-title {
    color: #3d4a51;
    font-weight: 600;
}

.contact-section .section-tag {
    color: #0b55bb;
    background: rgba(0, 98, 255, 0.08);
    border-color: rgba(0, 98, 255, 0.18);
}

.contact-section .contact-box,
.contact-section .contact-form-panel {
    background: #11191c;
}

.services-section .section-head,
.features-section .section-head,
.testimonials-section .section-head,
.contact-section .contact-info-panel {
    color: #11171a;
}

.services-section .section-title,
.features-section .section-title,
.testimonials-section .section-title,
.contact-section .contact-title {
    text-shadow: none;
}

.services-section .filter-pill {
    color: #536169;
}

.services-section .filter-pill.active,
.services-section .filter-pill:hover {
    color: #ffffff;
}

.services-section .section-tag,
.features-section .section-tag,
.testimonials-section .section-tag,
.contact-section .section-tag {
    color: #0b55bb;
    background: rgba(0, 98, 255, 0.07);
    border-color: rgba(0, 98, 255, 0.16);
}

.site-footer {
    background: #04070d;
    border-top: 1px solid var(--border-subtle);
    padding: 4.5rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-logo strong {
    color: var(--cyan);
}

.footer-logo-img {
    height: 34px;
    width: auto;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.2rem;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-contact-item i {
    color: var(--cyan);
    font-size: 0.95rem;
    width: 18px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* --- 17. FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.9rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--trans-smooth);
}

.floating-whatsapp::before {
    content: "Fale com a VeroTech";
    position: absolute;
    right: calc(100% + 0.75rem);
    white-space: nowrap;
    background: rgba(8, 12, 21, 0.92);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.55rem 0.75rem;
    opacity: 0;
    transform: translateX(6px);
    pointer-events: none;
    transition: var(--trans-fast);
}

.floating-whatsapp:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: var(--status-red);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
}

/* ==========================================================================
   18. RESPONSIVIDADE TOTAL (DESKTOPS, TABLETS E CELULARES)
   ========================================================================== */

/* Telas Médias / Tablets Grandes (<= 1024px) */
@media screen and (max-width: 1100px) {
    .nav-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media screen and (max-width: 1280px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 980px;
        margin: 0 auto;
    }

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

@media screen and (max-width: 767px) {
    .plans-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x proximity;
        padding: 0.25rem 0.25rem 1rem;
        max-width: none;
        margin: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .plans-grid::-webkit-scrollbar {
        display: none;
    }

    .plan-card {
        min-width: 82%;
        max-width: 82%;
        scroll-snap-align: start;
        flex: 0 0 82%;
    }

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

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

    .plan-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .service-proof-strip {
        grid-template-columns: 190px 1fr;
    }

    .service-proof-link {
        grid-column: 2;
        justify-self: start;
    }

    .security-proof-block {
        grid-template-columns: 240px 1fr;
        gap: 1.5rem;
    }

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Tablets e Smartphones (<= 768px) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    /* Esconde Top Bar & Nav Desktop */
    .nav-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .btn-header .btn-text {
        display: none; /* No mobile economiza espaço exibindo o ícone */
    }

    .btn-header {
        padding: 0.55rem 0.8rem;
    }

    /* Hero no Mobile */
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 3.5rem;
        background-position: 64% center;
        background-image: linear-gradient(90deg, rgba(5, 8, 12, 0.98) 0%, rgba(5, 8, 12, 0.82) 60%, rgba(5, 8, 12, 0.62) 100%), url("assets/planodefundo.jpeg");
    }

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

    .hero-title br {
        display: none;
    }

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

    .hero-cta-note {
        margin-top: -1rem;
        align-items: flex-start;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-trust-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tech-monitor-header {
        gap: 0.6rem;
    }

    .tech-monitor-body {
        padding: 1.1rem;
        font-size: 0.76rem;
    }

    .terminal-line {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .plan-featured-badge {
        top: -12px;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        white-space: normal;
        text-align: center;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

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

    /* Serviços & Diferenciais no Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.35rem;
    }

    .card-badge {
        font-size: 0.64rem;
    }

    .card-title {
        min-height: auto;
        font-size: 1.08rem;
    }

    .card-desc {
        min-height: 0;
        font-size: 0.88rem;
    }

    .service-proof-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.7rem;
    }

    .service-proof-image {
        height: 170px;
    }

    .service-proof-image img {
        object-position: center 42%;
    }

    .service-proof-link {
        grid-column: auto;
        width: 100%;
        justify-content: center;
    }

    .security-proof-block {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.7rem;
    }

    .security-proof-image {
        height: 190px;
    }

    .security-proof-image img {
        object-position: center 48%;
    }

    .security-proof-copy {
        padding: 0.25rem 0.4rem 0.5rem;
    }

    .security-proof-copy h3 {
        font-size: 1.3rem;
    }

    .photo-label {
        font-size: 0.64rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .card-title,
    .card-desc {
        min-height: 0;
    }

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

    /* Diagnóstico no Mobile */
    .diag-wrapper {
        padding: 2rem 1.25rem;
    }

    .diag-title {
        font-size: 1.5rem;
    }

    .step-chips {
        gap: 0.5rem;
    }

    .diag-chip {
        font-size: 0.82rem;
        padding: 0.55rem 0.9rem;
    }

    /* Formulário no Mobile */
    .contact-form-panel {
        padding: 1.8rem 1.25rem;
    }

    .mascot-intro {
        max-width: 100%;
    }

    .contact-map-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }

    .contact-map-heading a {
        text-align: left;
    }

    .contact-map {
        height: 190px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Footer no Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }

    /* Floating WhatsApp Button Mobile */
    .floating-whatsapp {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 54px;
        height: 54px;
        font-size: 1.7rem;
    }

    .floating-whatsapp::before {
        display: none;
    }
}

/* Telas Muito Pequenas (<= 380px) */
@media screen and (max-width: 380px) {
    .hero-title {
        font-size: 1.85rem;
    }

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

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

    .diag-wrapper {
        padding: 1.5rem 1rem;
    }
}

/* --- 19. PÁGINA EMPRESAS --- */
.business-hero {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5.5rem;
    border-bottom: 1px solid var(--border-subtle);
    background:
        linear-gradient(90deg, rgba(7, 10, 13, 0.98) 0%, rgba(8, 14, 18, 0.94) 46%, rgba(4, 21, 35, 0.9) 100%),
        radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.14), transparent 28%),
        linear-gradient(135deg, #080b0d, #0b1d29 56%, #071019);
}

.business-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.38;
    background-image: linear-gradient(rgba(113, 190, 211, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(113, 190, 211, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent 0%, black 45%, black 100%);
}

.business-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.business-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    margin-bottom: 1.35rem;
}

.business-eyebrow span {
    width: 28px;
    height: 1px;
    background: var(--cyan);
}

.business-hero h1 {
    max-width: 760px;
    color: var(--text-white);
    font-size: clamp(2.7rem, 4.6vw, 4.7rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.business-hero h1 em {
    font-style: normal;
    color: var(--cyan);
}

.business-lead {
    max-width: 690px;
    margin: 1.45rem 0 2rem;
    color: #d6e3ef;
    font-size: 1.06rem;
    line-height: 1.75;
}

.business-hero .human-proof {
    margin-top: 2rem;
}

.business-hero-panel {
    position: relative;
    padding: 1.45rem;
    border: 1px solid rgba(102, 218, 255, 0.25);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(18, 34, 45, 0.92), rgba(10, 17, 22, 0.96));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.business-hero-panel::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18%;
    width: 3px;
    height: 26%;
    background: var(--cyan);
    box-shadow: 0 0 16px var(--cyan);
}

.business-panel-topline,
.business-panel-list > div,
.business-health-score {
    display: flex;
    align-items: center;
}

.business-panel-topline {
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 0.77rem;
    font-weight: 700;
}

.business-panel-topline > span:first-child i,
.business-panel-footer i {
    margin-right: 0.45rem;
    color: var(--cyan);
}

.business-live {
    color: #b9e8ff;
    font-size: 0.68rem;
}

.business-live i {
    margin-right: 0.35rem;
    font-size: 0.55rem;
}

.business-health-score {
    gap: 1.2rem;
    padding: 1.55rem 0;
}

.health-ring {
    flex: 0 0 74px;
    width: 74px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 7px solid rgba(0, 210, 255, 0.18);
    border-top-color: var(--cyan);
    border-right-color: #237dff;
    border-radius: 50%;
    color: var(--text-white);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
}

.mini-label {
    display: block;
    margin-bottom: 0.38rem;
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.business-health-score strong {
    display: block;
    color: var(--text-white);
    font-size: 1.13rem;
    line-height: 1.32;
}

.business-health-score p {
    margin-top: 0.45rem;
    color: #c7d7e5;
    font-size: 0.78rem;
    line-height: 1.5;
}

.business-panel-list {
    border-top: 1px solid var(--border-subtle);
}

.business-panel-list > div {
    gap: 0.75rem;
    min-height: 48px;
    color: var(--text-main);
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.business-panel-list > div > i:last-child {
    margin-left: auto;
    color: var(--cyan);
    font-size: 0.76rem;
}

.panel-icon {
    width: 25px;
    color: var(--cyan);
    text-align: center;
}

.business-panel-footer {
    padding-top: 1rem;
    color: #b9c8d6;
    font-size: 0.72rem;
}

.business-trust {
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(90deg, #004ecc 0%, #0062ff 48%, #00a6db 100%);
}

.business-trust-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    min-height: 95px;
}

.business-trust p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    line-height: 1.55;
}

.business-trust p:first-child {
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
}

.business-trust strong {
    color: var(--text-white);
    font-size: 0.76rem;
}

.business-trust p:not(:first-child) {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.business-trust p:not(:first-child) i {
    color: #ffffff;
    font-size: 1rem;
}

.business-page main > #solucoes {
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #e8f4ff 100%);
}

.business-page #solucoes .section-title,
.business-page #solucoes .card-title {
    color: #07131d;
}

.business-page #solucoes .section-desc,
.business-page #solucoes .card-desc {
    color: #415263;
}

.business-page #solucoes .section-tag {
    color: #0056cf;
    background: rgba(0, 98, 255, 0.08);
    border-color: rgba(0, 98, 255, 0.2);
}

.business-page #solucoes .card-badge.highlight {
    color: #0056cf;
    background: rgba(0, 98, 255, 0.08);
    border-color: rgba(0, 98, 255, 0.22);
}

.business-page #solucoes .card-title::before {
    color: #0062ff;
}

.business-page #solucoes .service-card {
    background: #ffffff;
    border-color: rgba(0, 72, 156, 0.14);
    box-shadow: 0 15px 35px rgba(0, 45, 102, 0.1);
}

.business-page #solucoes .service-card:hover {
    border-color: rgba(0, 98, 255, 0.44);
    box-shadow: 0 20px 42px rgba(0, 74, 174, 0.15);
}

.business-outcomes {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(100deg, rgba(8, 15, 17, 0.96), rgba(13, 30, 37, 0.74));
}

.business-outcomes-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
    gap: clamp(2.5rem, 8vw, 9rem);
    align-items: center;
}

.business-outcomes-copy .section-tag,
.business-outcomes-copy .section-title {
    margin-bottom: 1rem;
}

.business-outcome-list {
    display: grid;
    gap: 1.2rem;
}

.business-outcome-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding-bottom: 1.2rem;
    color: #d3e0ea;
    font-size: 0.94rem;
    line-height: 1.65;
    border-bottom: 1px solid var(--border-subtle);
}

.business-outcome-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.business-outcome-list i {
    margin-top: 0.3rem;
    color: var(--cyan);
}

.business-outcome-list strong {
    color: var(--text-white);
}

.business-plans {
    background: linear-gradient(135deg, #f5faff 0%, #ffffff 54%, #e6f3ff 100%);
}

.business-page .business-plans .section-title,
.business-page .business-plans .plan-name,
.business-page .business-plans .plan-price-box .amount,
.business-page .business-plans .plan-price-box .cents {
    color: #07131d;
}

.business-page .business-plans .section-desc,
.business-page .business-plans .plan-tagline,
.business-page .business-plans .plan-checklist li,
.business-page .business-plans .plan-price-box .currency,
.business-page .business-plans .plan-price-box .freq {
    color: #405365;
}

.business-page .business-plans .section-tag {
    color: #0056cf;
    background: rgba(0, 98, 255, 0.08);
    border-color: rgba(0, 98, 255, 0.2);
}

.business-page .business-plans .plan-card {
    background: #ffffff;
    border-color: rgba(0, 72, 156, 0.16);
    box-shadow: 0 14px 30px rgba(0, 45, 102, 0.1);
}

.business-page .business-plans .plan-card.featured {
    background: linear-gradient(180deg, #e9f6ff 0%, #ffffff 100%);
    border-color: #0062ff;
    box-shadow: 0 16px 38px rgba(0, 98, 255, 0.2);
}

.business-page .business-plans .btn-outline {
    border-color: #0062ff;
    background: #ffffff;
    color: #0056cf;
    box-shadow: inset 0 0 0 1px rgba(0, 98, 255, 0.08);
}

.business-page .business-plans .btn-outline:hover {
    border-color: #0056cf;
    background: #0062ff;
    color: #ffffff;
}

.business-plans .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
}

.business-plans .plan-card {
    padding: 2.35rem 1.7rem 1.65rem;
}

.business-plans .plan-card.featured {
    transform: translateY(-8px);
}

.business-plans .plan-card.featured:hover {
    transform: translateY(-13px);
}

.business-plans .plan-tagline {
    min-height: 3rem;
    margin-bottom: 1.1rem;
}

.business-plans .plan-price-box {
    margin-bottom: 1.35rem;
    padding-bottom: 1.25rem;
}

.business-plans .plan-checklist {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.business-plans .plan-checklist li {
    font-size: 0.87rem;
}

.business-page .contact-section {
    background: #050b10;
}

.business-page .business-contact-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3rem;
    align-items: center;
    min-height: 260px;
    padding: 3.2rem clamp(1.5rem, 5vw, 4.5rem);
    border: 1px solid rgba(0, 210, 255, 0.26);
    border-radius: var(--radius-md);
    background:
        linear-gradient(100deg, rgba(0, 68, 155, 0.98), rgba(0, 26, 60, 0.98)),
        linear-gradient(135deg, #005ee0, #050b10);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.business-page .business-contact-box.reveal {
    opacity: 1;
    transform: none;
}

.business-page .business-contact-box:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 210, 255, 0.48);
    box-shadow: 0 30px 64px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(0, 210, 255, 0.08);
}

.business-contact-copy {
    max-width: 690px;
}

.business-contact-copy .business-eyebrow {
    margin-bottom: 1rem;
}

.business-contact-copy h2 {
    color: var(--text-white);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.business-contact-copy p {
    max-width: 590px;
    margin-top: 0.9rem;
    color: #d6e5f2;
    font-size: 0.98rem;
    line-height: 1.65;
}

.business-contact-action {
    min-width: 250px;
    text-align: center;
}

.business-contact-action .btn {
    width: 100%;
}

.business-contact-action p {
    margin-top: 0.8rem;
    color: #d0e2f2;
    font-size: 0.73rem;
}

.business-contact-action p i {
    margin-right: 0.35rem;
    color: var(--cyan);
}

.business-page .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.business-page .process-card {
    min-height: 245px;
    padding: 1.7rem 1.35rem;
}

.business-page .process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(0, 210, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 98, 255, 0.12);
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
}

.business-page .process-card h3 {
    font-size: 1.08rem;
    line-height: 1.35;
}

.business-page .process-card p {
    font-size: 0.87rem;
}

@media screen and (max-width: 1024px) {
    .business-hero {
        padding: 5.5rem 0 4.25rem;
    }

    .business-hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
        gap: 2.5rem;
    }

    .business-hero h1 {
        font-size: 3.25rem;
    }

    .business-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 1.3rem;
        padding-bottom: 1.3rem;
    }

    .business-plans .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 700px;
    }

    .business-plans .plan-card {
        padding: 2.15rem 1.45rem 1.35rem;
    }

    .business-page .business-contact-box {
        gap: 2rem;
        padding: 2.8rem 2.5rem;
    }

    .business-contact-action {
        min-width: 220px;
    }

    .business-page .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .business-hero {
        padding: 4rem 0 3.5rem;
    }

    .business-hero-container,
    .business-outcomes-grid {
        grid-template-columns: 1fr;
    }

    .business-hero-container {
        gap: 2.2rem;
    }

    .business-hero h1 {
        font-size: 2.45rem;
    }

    .business-lead {
        font-size: 0.98rem;
    }

    .business-hero .human-proof {
        margin-top: 1.5rem;
    }

    .business-hero-panel {
        padding: 1.2rem;
    }

    .business-trust-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .business-trust p:first-child {
        padding-bottom: 0.85rem;
        border-bottom: 1px solid var(--border-subtle);
    }

    .business-outcomes-grid {
        gap: 2rem;
    }

    .business-plans .plans-grid {
        display: flex;
        overflow-x: auto;
        max-width: none;
    }

    .business-plans .plan-card {
        min-width: 84%;
        max-width: 84%;
        padding: 2.2rem 1.35rem 1.4rem;
    }

    .business-plans .plan-card.featured,
    .business-plans .plan-card.featured:hover {
        transform: none;
    }

    .business-page .business-contact-box {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        min-height: 0;
        padding: 2.15rem 1.45rem;
    }

    .business-contact-action {
        width: 100%;
    }

    .business-page .process-grid {
        grid-template-columns: 1fr;
    }

    .business-page .process-card {
        min-height: 0;
    }
}

@media screen and (max-width: 380px) {
    .business-hero h1 {
        font-size: 2.1rem;
    }

    .business-panel-topline {
        align-items: flex-start;
        flex-direction: column;
    }
}
