/* =====================================================
   STEELNER INOVAHOUSE - COMPLETE PROFESSIONAL CSS
   Designer Sênior - Pixel Perfect Implementation
   ===================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-neutral-800);
    background: #FFFFFF;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY SCALE ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-neutral-900);
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1.25rem 0;
    line-height: 1.7;
    color: var(--color-neutral-600);
    font-size: 1rem;
}

strong {
    font-weight: 700;
    color: var(--color-neutral-900);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== PRELOADER - Premium Minimalist ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--color-neutral-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.loader-logo {
    opacity: 0;
    animation: loaderFadeIn 0.8s ease forwards 0.2s;
}

.loader-logo svg {
    width: 64px;
    height: 64px;
}

.loader-progress-wrap {
    width: 200px;
    position: relative;
}

.loader-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-primary-400));
    border-radius: 1px;
    animation: loaderProgress 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
}

.loading-text {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: loaderFadeIn 0.6s ease forwards 0.5s;
}

@keyframes loaderProgress {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

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

/* ===================================================
   LGPD COOKIE BAR — minimal bottom strip
   =================================================== */

.lgpd-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-neutral-900);
    border-top: 1px solid rgba(63, 192, 185, 0.2);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    z-index: 9990;
    padding: 14px 24px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lgpd-bar.is-visible {
    transform: translateY(0);
}
.lgpd-bar-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.lgpd-bar-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}
.lgpd-bar-text strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}
.lgpd-bar-link {
    color: var(--color-primary-500);
    text-decoration: none;
    margin-left: 6px;
}
.lgpd-bar-link:hover {
    color: var(--color-primary-400);
    text-decoration: underline;
}
.lgpd-bar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}
.lgpd-bar-btn {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}
.lgpd-bar-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}
.lgpd-bar-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.9);
}
.lgpd-bar-btn--primary {
    background: var(--color-primary-500);
    color: #fff;
}
.lgpd-bar-btn--primary:hover { background: var(--color-primary-400); }
.lgpd-bar-btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.85);
}
.lgpd-bar-btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Cookie Management Modal */
.lgpd-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 19, 43, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lgpd-modal.is-visible { display: flex; }
.lgpd-modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.lgpd-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0;
}
.lgpd-modal-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0B132B;
    margin: 0;
}
.lgpd-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94A3B8;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}
.lgpd-modal-close:hover { color: #0B132B; }
.lgpd-modal-body { padding: 8px 0; }
.lgpd-modal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #F1F5F9;
}
.lgpd-modal-item:last-child { border-bottom: none; }
.lgpd-modal-item-info { flex: 1; }
.lgpd-modal-item-info strong { display: block; font-size: 0.875rem; color: #0B132B; font-weight: 700; margin-bottom: 4px; }
.lgpd-modal-item-info p { font-size: 0.8rem; color: #64748B; margin: 0; line-height: 1.5; }
.lgpd-toggle--disabled { font-size: 0.75rem; font-weight: 600; color: #3FC0B9; white-space: nowrap; }
.lgpd-toggle-wrap { position: relative; display: inline-flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.lgpd-toggle-input { opacity: 0; width: 0; height: 0; position: absolute; }
.lgpd-toggle-slider {
    width: 44px; height: 24px;
    background: #CBD5E1;
    border-radius: 12px;
    transition: background 0.25s ease;
    position: relative;
}
.lgpd-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.lgpd-toggle-input:checked + .lgpd-toggle-slider { background: #3FC0B9; }
.lgpd-toggle-input:checked + .lgpd-toggle-slider::after { transform: translateX(20px); }
.lgpd-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: flex-end;
}
.lgpd-modal-footer .lgpd-bar-btn--primary { padding: 10px 24px; font-size: 0.875rem; }

/* Floating settings button (reopen) */
.lgpd-settings-btn {
    position: fixed;
    bottom: 24px;
    left: 20px;
    z-index: 9989;
    width: 36px;
    height: 36px;
    background: var(--color-neutral-900);
    border: 1px solid rgba(63, 192, 185, 0.3);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary-500);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease, transform 0.2s ease;
}
.lgpd-settings-btn svg { width: 16px; height: 16px; }
.lgpd-settings-btn:hover {
    background: #162035;
    transform: scale(1.08);
}

@media (max-width: 640px) {
    .lgpd-bar { padding: 16px; }
    .lgpd-bar-inner { flex-direction: column; gap: 14px; align-items: center; text-align: center; }
    .lgpd-bar-text { font-size: 0.8rem; text-align: center; }
    .lgpd-bar-actions { width: 100%; justify-content: center; flex-wrap: nowrap; }
    .lgpd-bar-btn { flex: 1; text-align: center; padding: 8px 12px; font-size: 0.78rem; }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-neutral-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-bottom-color: var(--color-neutral-300);
}

/* ── Navbar: logo esquerda | nav centralizado | busca direita ── */
.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 2rem;
    gap: 0;
}
.navbar-brand  { grid-column: 1; }
.navbar-menu   { grid-column: 2; display: flex; justify-content: center; }
.navbar-cta    { grid-column: 3; }
.navbar-toggle { grid-column: 4; }

/* Logo */
.logo-svg {
    height: 48px;
    width: auto;
    color: var(--color-primary-500);
    transition: transform 0.3s ease;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover .logo-svg,
.logo:hover .logo-img {
    transform: scale(1.02);
    opacity: 0.9;
}

.logo-text {
    fill: var(--color-neutral-900);
    font-weight: 800;
}

.logo-subtext {
    fill: var(--color-neutral-500);
    font-weight: 500;
}

.footer-brand .logo-img {
    height: 36px;
}

/* Navigation */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.nav-link {
    position: relative;
    color: var(--color-neutral-600);
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-primary-400));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.nav-link.active {
    color: var(--color-primary-500);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--color-neutral-100);
    color: var(--color-neutral-600);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: var(--color-neutral-200);
    color: var(--color-primary-500);
    transform: translateY(-2px);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-primary-400) 100%);
    width: 0%;
    transition: width 0.1s linear;
}

/* Mobile-only elements — hidden on desktop */
.mobile-menu-header,
.mobile-menu-cta { display: none; }

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggle-line {
    width: 26px;
    height: 2.5px;
    background: var(--color-neutral-700);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translateY(8.5px);
}

.navbar-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8.5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-400) 100%);
    color: var(--color-neutral-900);
    box-shadow: 0 4px 16px rgba(63, 192, 185, 0.3);
}
.btn-primary svg,
.btn-primary i,
.btn-primary [data-lucide] { color: var(--color-neutral-900); }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(63, 192, 185, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Secondary Button */
.btn-secondary {
    background: var(--color-neutral-900);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(11, 19, 43, 0.2);
}

.btn-secondary:hover {
    background: #1a2440;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 19, 43, 0.3);
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* Shine Animation */
.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

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

/* ===== HERO SECTION ===== */
.hero-premium {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 100px;
    overflow: hidden;
    background: var(--color-neutral-900);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 50%, var(--color-secondary-500) 100%);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(11, 19, 43, 0.94) 0%,
        rgba(30, 41, 59, 0.88) 50%,
        rgba(45, 63, 84, 0.90) 100%
    );
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.06) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.06) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(63, 192, 185, 0.15);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(63, 192, 185, 0.3);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
}

.badge-icon svg {
    fill: var(--color-primary-400);
    width: 16px;
    height: 16px;
}

.badge-text {
    letter-spacing: 0.01em;
}

.badge-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: var(--color-primary-500);
    border-radius: 50%;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.gradient-text-primary {
    background: linear-gradient(135deg, var(--color-primary-400) 0%, var(--color-primary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, var(--color-primary-400) 0%, var(--color-primary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    line-height: 1.75;
    color: var(--color-neutral-100);
    margin-bottom: 40px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 760px;
    margin: 0 auto 40px;
}

.stat-card-mini {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-mini:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(63, 192, 185, 0.4);
    transform: translateY(-2px);
}

.stat-card-mini .stat-icon {
    margin: 0 auto 16px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 192, 185, 0.22);
    border-radius: 14px;
    color: var(--color-primary-400);
}

.stat-card-mini .stat-icon svg {
    width: 26px;
    height: 26px;
}

.stat-card-mini .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.stat-card-mini .stat-label {
    font-size: 14px;
    color: var(--color-neutral-200);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--color-neutral-100);
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-400);
    flex-shrink: 0;
}

.trust-divider {
    width: 1.5px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-mouse {
    width: 30px;
    height: 48px;
    border: 2.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    position: relative;
    margin: 0 auto 12px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 24px;
        opacity: 0.4;
    }
}

.scroll-text {
    color: var(--color-neutral-200);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ===== SOCIAL PROOF BANNER ===== */
.social-proof {
    background: linear-gradient(180deg, var(--color-neutral-50) 0%, var(--color-neutral-100) 100%);
    border-bottom: 1px solid var(--color-neutral-200);
    padding: 24px 0;
    overflow: hidden;
}

.proof-marquee {
    width: 100%;
    overflow: hidden;
}

.proof-track {
    display: flex;
    gap: 60px;
    animation: marquee 35s linear infinite;
    width: fit-content;
}

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

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: var(--color-neutral-600);
    font-size: 15px;
    font-weight: 500;
}

.proof-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.proof-item strong {
    color: var(--color-neutral-800);
    font-weight: 700;
}

/* ===== SECTIONS ===== */
.section {
    padding: clamp(5rem, 8vw, 8rem) 0;
    position: relative;
}

.dark-section {
    background: linear-gradient(180deg, var(--color-neutral-900) 0%, #162035 100%);
    color: var(--color-neutral-200);
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    width: 100%;
    padding: 0 2rem;
}

/* Section Header */
.section-header {
    margin-bottom: 64px;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(63, 192, 185, 0.08);
    border: 1px solid rgba(63, 192, 185, 0.15);
    border-radius: 100px;
    color: var(--color-primary-500);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-primary-400);
}

.section-badge svg {
    width: 18px;
    height: 18px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
    color: var(--color-neutral-900);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-title.light {
    color: #FFFFFF;
}

.section-description {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--color-neutral-600);
    line-height: 1.8;
    max-width: 820px;
}

.section-header.center .section-description {
    margin: 0 auto;
}

.section-description.light {
    color: var(--color-neutral-200);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ===== ADVANTAGES GRID ===== */
.advantages-section {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--color-neutral-50) 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.advantage-card {
    background: #FFFFFF;
    border: 1.5px solid var(--color-neutral-200);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-primary-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-neutral-300);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-icon-wrapper {
    position: relative;
    width: 68px;
    height: 68px;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.12), rgba(71, 167, 199, 0.06));
    border-radius: 18px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .icon-bg {
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.2), rgba(71, 167, 199, 0.12));
    transform: rotate(8deg) scale(1.12);
}

.card-icon {
    position: relative;
    z-index: 1;
    color: var(--color-primary-500);
    width: 34px;
    height: 34px;
    margin: 17px;
}

.card-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-neutral-100);
    line-height: 1;
    font-family: var(--font-display);
}

.card-title {
    font-size: 1.625rem;
    color: var(--color-neutral-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-description {
    color: var(--color-neutral-600);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 15px;
}

.card-benefits {
    list-style: none;
    margin-bottom: 24px;
}

.card-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-neutral-500);
    font-size: 14.5px;
    line-height: 1.6;
}

.card-benefits svg {
    width: 20px;
    height: 20px;
    color: var(--color-success-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.card-footer {
    padding-top: 24px;
    border-top: 1.5px solid var(--color-neutral-100);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-500);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link:hover {
    gap: 12px;
    color: var(--color-primary-700);
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 100px 0;
}

.video-grid-premium {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

/* Main Video Card */
.video-card.main-video {
    grid-column: 1 / 2;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    margin-bottom: 24px;
    /* Proporção 16:9 (horizontal) */
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.video-wrapper:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 90px;
    height: 90px;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-button:hover {
    transform: scale(1.15);
}

.video-info {
    color: var(--color-neutral-200);
}

.video-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.video-description {
    color: var(--color-neutral-300);
    margin-bottom: 16px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.video-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--color-neutral-300);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-meta svg {
    width: 16px;
    height: 16px;
}

/* Video List */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-card-small {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
    transition: all 0.3s ease;
}

.video-card-small:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    /* Proporção 9:16 (vertical - Stories/Reels) */
    aspect-ratio: 9 / 16;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon-small {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.play-icon-small svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF;
}

.thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-neutral-800), var(--color-neutral-700));
}

.thumbnail-placeholder svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.video-info-small h4 {
    color: #FFFFFF;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.video-info-small p {
    color: var(--color-neutral-300);
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.video-duration-small {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--color-neutral-300);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.video-duration-small svg {
    width: 14px;
    height: 14px;
}

/* ===== WHATSAPP & BACK TO TOP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1030;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.whatsapp-float svg {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.whatsapp-float-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2.5s ease-out infinite;
    z-index: 0;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-float-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 112px;
    width: 52px;
    height: 52px;
    background: #FFFFFF;
    border: 1.5px solid var(--color-neutral-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary-500);
    color: #FFFFFF;
    border-color: var(--color-primary-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(63, 192, 185, 0.3);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ===== UTILITIES ===== */
.hide-mobile {
    display: inline;
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .video-grid-premium {
        grid-template-columns: 1fr;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    .navbar-cta--desktop-only { display: none; }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 0 2rem;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-menu.active {
        right: 0;
    }

    /* Mobile menu header: logo + close button */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid #F1F5F9;
        width: 100%;
        flex-shrink: 0;
    }
    .mobile-menu-logo img { height: 36px; width: auto; display: block; }
    .mobile-menu-close {
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
        color: #64748B;
        border-radius: 8px;
        transition: background 0.2s ease, color 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-menu-close:hover { background: #F1F5F9; color: #0B132B; }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 8px 0;
    }

    .nav-link {
        padding: 14px 24px;
        width: 100%;
        font-size: 16px;
        border-bottom: 1px solid #F8FAFC;
    }

    /* Mobile CTA at bottom of drawer */
    .mobile-menu-cta {
        padding: 24px;
        width: 100%;
        margin-top: auto;
    }
    .mobile-menu-cta .btn { width: 100%; justify-content: center; }

    .navbar-actions {
        width: 100%;
        margin-top: 2rem;
    }

    .navbar-actions .btn {
        width: 100%;
    }

    .navbar-toggle {
        display: flex;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

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

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .back-to-top {
        right: 32px;
        bottom: 108px;
    }
}

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

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }

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

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

    .advantages-grid {
        gap: 20px;
    }

    .advantage-card {
        padding: 24px;
    }
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */

.instagram-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--color-neutral-50) 100%);
    position: relative;
    overflow: hidden;
}

.instagram-carousel-wrapper {
    position: relative;
    margin: 60px 0 40px;
    padding: 0 60px;
}

.instagram-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
}

.instagram-carousel::-webkit-scrollbar {
    display: none;
}

.instagram-post {
    flex: 0 0 auto;
    width: 320px;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.instagram-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(63, 192, 185, 0.2);
}

.post-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-post:hover .post-image img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    display: flex;
    gap: 20px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-stats svg {
    width: 18px;
    height: 18px;
}

.post-caption {
    padding: 16px 20px;
}

.post-caption p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-neutral-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neutral-800);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--color-primary-500);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.instagram-cta {
    text-align: center;
    margin-top: 48px;
}

/* Animação automática do carrossel */
@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.instagram-carousel.auto-scroll {
    animation: scroll-carousel 30s linear infinite;
}

.instagram-carousel.auto-scroll:hover {
    animation-play-state: paused;
}

/* Responsive Instagram Section */
@media (max-width: 1024px) {
    .instagram-section {
        padding: 80px 0;
    }

    .instagram-carousel-wrapper {
        padding: 0 48px;
    }

    .instagram-post {
        width: 280px;
    }
}

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

    .instagram-carousel-wrapper {
        padding: 0 40px;
        margin: 40px 0 32px;
    }

    .instagram-post {
        width: 260px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .instagram-section {
        padding: 48px 0;
    }

    .instagram-carousel-wrapper {
        padding: 0;
        margin: 32px -20px 24px;
    }

    .instagram-post {
        width: 240px;
    }

    .carousel-btn {
        display: none;
    }

    .instagram-carousel {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Custom cursor - REMOVED (excessive effect) */

/* ========================================
   TIMELINE INTERACTIVE
   ======================================== */

.timeline-interactive {
    position: relative;
    padding: 80px 0;
}

.timeline-track {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-neutral-200) 0%, var(--color-primary-500) 50%, var(--color-neutral-200) 100%);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step:nth-child(even) .step-content {
    grid-column: 3;
    text-align: left;
}

.timeline-step:nth-child(odd) .step-content {
    grid-column: 1;
    text-align: right;
}

.timeline-step:nth-child(even) .step-marker {
    grid-column: 2;
    grid-row: 1;
}

.timeline-step:nth-child(odd) .step-marker {
    grid-column: 2;
    grid-row: 1;
}

.step-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.marker-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 4px solid var(--color-primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(63, 192, 185, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:hover .marker-ring {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(63, 192, 185, 0.45);
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: var(--color-primary-500);
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-400));
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    font-family: var(--font-display);
    box-shadow: 0 4px 12px rgba(63, 192, 185, 0.4);
}

.step-content {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:hover .step-content {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary-500);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.15), rgba(71, 167, 199, 0.08));
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    margin-bottom: 16px;
}

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

.step-title {
    font-size: 1.5rem;
    color: var(--color-neutral-900);
    margin-bottom: 12px;
}

.step-description {
    color: var(--color-neutral-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-neutral-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.step-features svg {
    width: 16px;
    height: 16px;
    color: var(--color-success-500);
    flex-shrink: 0;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #EFF6FF;
    border-radius: 20px;
    color: var(--color-primary-500);
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
}

.step-duration svg {
    width: 14px;
    height: 14px;
}

.process-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.08), rgba(71, 167, 199, 0.04));
    border-radius: 24px;
    border: 2px dashed var(--color-neutral-300);
}

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

.summary-icon {
    width: 56px;
    height: 56px;
    background: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(63, 192, 185, 0.15);
}

.summary-icon svg {
    width: 28px;
    height: 28px;
}

.summary-content h4 {
    font-size: 14px;
    color: var(--color-neutral-500);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neutral-900);
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-display);
}

.value-number {
    color: var(--color-primary-500);
}

.value-unit {
    font-size: 1.25rem;
    color: var(--color-neutral-500);
    font-weight: 600;
}

.summary-note {
    font-size: 13px;
    color: var(--color-neutral-500);
    font-weight: 500;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-track::before {
        left: 24px;
    }

    .timeline-step {
        grid-template-columns: 56px 1fr;
        gap: 24px;
    }

    .timeline-step:nth-child(even) .step-content,
    .timeline-step:nth-child(odd) .step-content {
        grid-column: 2;
        text-align: left;
    }

    .marker-ring {
        width: 56px;
        height: 56px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
        top: -8px;
        right: -8px;
    }

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

/* ========================================
   COMPARISON SECTION
   ======================================== */

.comparison-wrapper {
    background: linear-gradient(180deg, var(--color-neutral-50) 0%, #FFFFFF 100%);
    padding: 100px 0;
}

.comparison-toggle {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.toggle-btn {
    padding: 12px 32px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    color: var(--color-neutral-500);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-400));
    color: #FFFFFF;
    border-color: var(--color-primary-500);
}

.toggle-btn:hover:not(.active) {
    border-color: var(--color-neutral-300);
    background: var(--color-neutral-50);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary-500);
}

.comparison-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-neutral-100);
}

.comparison-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.12), rgba(71, 167, 199, 0.06));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.comparison-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-primary-500);
}

.comparison-header h3 {
    font-size: 1.75rem;
    color: var(--color-neutral-900);
    margin: 0;
}

.comparison-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.column {
    text-align: center;
    padding: 20px 16px;
    background: var(--color-neutral-50);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.column.winner {
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.08), rgba(71, 167, 199, 0.04));
    border: 2px solid var(--color-primary-500);
}

.column-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-primary-500);
    color: #FFFFFF;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.column-badge.traditional {
    background: var(--color-neutral-400);
}

.column-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neutral-900);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.column-value.highlight {
    color: var(--color-primary-500);
}

.column-description {
    font-size: 13px;
    color: var(--color-neutral-500);
    line-height: 1.5;
}

.column-divider {
    height: 2px;
    background: var(--color-neutral-200);
    margin: 24px 0;
}

.comparison-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--color-neutral-100);
    text-align: center;
}

.savings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ECFDF5;
    border-radius: 12px;
    color: #047857;
    font-weight: 600;
}

.savings svg {
    width: 20px;
    height: 20px;
}

.savings.success {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 2px solid var(--color-success-500);
}

/* Comparison Table View */
.comparison-table {
    display: none;
}

.comparison-table.active {
    display: block;
}

.table-scroll {
    overflow-x: auto;
    background: #FFFFFF;
    border-radius: 20px;
    border: 2px solid var(--color-neutral-200);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-neutral-100);
}

.comparison-table th {
    background: var(--color-neutral-50);
    font-weight: 700;
    color: var(--color-neutral-800);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.comparison-table td {
    color: var(--color-neutral-600);
}

.winner-col {
    background: rgba(63, 192, 185, 0.04);
}

.winner-col.highlight {
    color: var(--color-primary-500);
    font-weight: 700;
}

/* Comparison Responsive */
@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .comparison-toggle {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 32px;
    }

    .toggle-btn {
        width: 100%;
    }

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

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: linear-gradient(180deg, var(--color-neutral-50) 0%, #FFFFFF 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-neutral-300);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    border-color: var(--color-primary-500);
    box-shadow: 0 8px 24px rgba(63, 192, 185, 0.12);
}

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

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

.faq-question svg {
    width: 22px;
    height: 22px;
    color: var(--color-neutral-400);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-primary-500);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--color-neutral-500);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */

.cta-final-section {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.06) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.06) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.cta-final-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-final-description {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--color-neutral-300);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.cta-final-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--color-neutral-200);
    font-size: 14px;
    font-weight: 600;
}

.cta-final-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-final-trust .trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-400);
}

.cta-final-trust .trust-divider {
    width: 1.5px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   FOOTER PREMIUM
   ======================================== */

.footer-premium {
    background: var(--color-neutral-900);
    padding: 80px 0 0;
    color: var(--color-neutral-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-svg {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    fill: #FFFFFF;
}

.footer-brand .logo-subtext {
    fill: var(--color-neutral-400);
}

.footer-description {
    color: var(--color-neutral-400);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-neutral-300);
    transition: all 0.3s ease;
}

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

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

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

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: var(--color-neutral-400);
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--color-primary-400);
    padding-left: 6px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-neutral-400);
    font-size: 15px;
}

.footer-contact ul li svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: var(--color-neutral-400);
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--color-primary-400);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-neutral-500);
    font-size: 14px;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-final-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-final-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-final-trust {
        flex-direction: column;
        gap: 16px;
    }

    .cta-final-trust .trust-divider {
        display: none;
    }
}

/* ========================================
   PAGE HERO (for secondary pages)
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    padding: 180px 0 100px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Sobre Hero */
.sobre-hero {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    padding: 180px 0 100px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sobre-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

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

.sobre-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1.5px solid rgba(87, 206, 200, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-primary-400);
    margin-bottom: 24px;
    background: rgba(63, 192, 185, 0.08);
}

.sobre-hero-badge i {
    width: 16px;
    height: 16px;
    color: var(--color-primary-400);
}

.sobre-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.sobre-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-neutral-300);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tech Hero */
.tech-hero {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    padding: 180px 0 100px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

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

.tech-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1.5px solid rgba(87, 206, 200, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-primary-400);
    margin-bottom: 24px;
    background: rgba(63, 192, 185, 0.08);
}

.tech-hero-badge i {
    width: 16px;
    height: 16px;
    color: var(--color-primary-400);
}

.tech-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.tech-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-neutral-300);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

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

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-neutral-300);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   PROJECT CARDS (for projetos.html)
   ======================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.project-card {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--color-neutral-300);
}

.project-card-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-body {
    padding: 32px;
}

.project-card-body h3 {
    font-size: 1.75rem;
    color: var(--color-neutral-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.project-card-body p {
    color: var(--color-neutral-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.project-tag.blue {
    background: #EFF6FF;
    color: var(--color-primary-500);
}

.project-tag.green {
    background: #F0FDF4;
    color: #047857;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid var(--color-neutral-200);
    background: #FFFFFF;
    color: var(--color-neutral-500);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--color-neutral-300);
    color: var(--color-primary-500);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-400));
    color: #FFFFFF;
    border-color: var(--color-primary-500);
}

/* ========================================
   SOLUTION CARDS (for solucoes.html)
   ======================================== */

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

.solution-card {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-primary-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.solution-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--color-neutral-300);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.12), rgba(71, 167, 199, 0.06));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary-500);
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.2), rgba(71, 167, 199, 0.12));
    transform: scale(1.05);
}

.solution-icon svg {
    width: 36px;
    height: 36px;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: var(--color-neutral-900);
    margin-bottom: 16px;
}

.solution-card p {
    color: var(--color-neutral-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--color-neutral-600);
    font-size: 14.5px;
    border-bottom: 1px solid var(--color-neutral-100);
}

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

.solution-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-success-500);
    flex-shrink: 0;
}

/* ========================================
   BLOG CARDS (for blog.html)
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.blog-card {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-neutral-300);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(63, 192, 185, 0.9);
    color: #FFFFFF;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-body h3 {
    font-size: 1.3rem;
    color: var(--color-neutral-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--color-neutral-500);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-neutral-100);
    font-size: 13px;
    color: var(--color-neutral-400);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta svg {
    width: 14px;
    height: 14px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary-500);
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 10px;
    color: var(--color-primary-700);
}

.blog-card-link svg {
    width: 16px;
    height: 16px;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.06), rgba(71, 167, 199, 0.03));
    border: 2px solid var(--color-neutral-200);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    margin: 80px auto 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 24px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--color-neutral-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--color-neutral-900);
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 3px rgba(63, 192, 185, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--color-neutral-400);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-neutral-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--color-neutral-900);
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 3px rgba(63, 192, 185, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-neutral-400);
}

.contact-info-card {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 24px;
    padding: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-neutral-100);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.12), rgba(71, 167, 199, 0.06));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-text h4 {
    font-size: 15px;
    color: var(--color-neutral-900);
    margin-bottom: 4px;
}

.contact-info-text p {
    color: var(--color-neutral-500);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--color-primary-500);
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--color-primary-700);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .page-hero,
    .sobre-hero,
    .tech-hero {
        padding: 140px 0 80px;
    }
}

@media (max-width: 480px) {
    .solution-card {
        padding: 28px;
    }

    .contact-form,
    .contact-info-card {
        padding: 24px;
    }

    .project-card-image {
        height: 240px;
    }
}

/* =====================================================
   NOVOS ESTILOS — STEELNER 2026
   ===================================================== */

/* === HEADER / MENU — FUNDO BRANCO FORÇADO === */
.header,
.header.glass-header,
.glass-header {
    background: #FFFFFF !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid var(--color-neutral-200);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header.scrolled {
    background: #FFFFFF !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
}

/* Logo — azul da marca + texto escuro */
.logo-svg {
    color: var(--color-primary-500) !important;
}

.logo-text {
    fill: var(--color-neutral-900) !important;
}

.logo-subtext {
    fill: var(--color-neutral-500) !important;
}

.nav-link {
    color: var(--color-neutral-700);
    transition: color 0.25s ease;
}

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

/* === HOVER TRANSITIONS — SUAVES === */
.advantage-card,
.project-card,
.blog-card,
.benefit-card,
.comparison-card,
.faq-item,
.instagram-post {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease !important;
}

.card-link,
.nav-link,
.footer a,
.btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* === BOTÕES — UNIFORMES === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
}

/* === SEÇÃO: CONHEÇA NOSSOS PROJETOS EXECUTADOS === */
.projects-showcase {
    padding: 100px 0;
    background: var(--color-neutral-50);
}

.projects-showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.projects-showcase-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}

.projects-showcase-video video,
.projects-showcase-video .video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.projects-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.projects-showcase-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-neutral-900);
    margin-bottom: 12px;
}

.projects-showcase-content p {
    color: var(--color-neutral-600);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.projects-feature-row {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.projects-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.projects-feature-item .feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(63, 192, 185, 0.12), rgba(71, 167, 199, 0.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.projects-feature-item .feature-icon i,
.projects-feature-item .feature-icon svg {
    width: 22px;
    height: 22px;
}

.projects-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin: 0;
}

.projects-feature-item p {
    font-size: 0.875rem;
    color: var(--color-neutral-500);
    margin: 0;
    line-height: 1.5;
}

.projects-main-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
    position: relative;
    margin-bottom: 32px;
}

.projects-main-video video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.projects-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.projects-cta-center {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .projects-showcase-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .projects-feature-row {
        flex-direction: column;
        gap: 16px;
    }

    .projects-feature-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
}

/* === TIMELINE — LINHA DO TEMPO PREMIUM === */
.timeline-premium {
    position: relative;
    padding: 0;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline-premium-line {
    position: absolute;
    left: 50%;
    top: 28px;      /* começa no centro do círculo 1 (56px / 2) */
    bottom: 28px;   /* termina no centro do círculo 4 */
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary-500) 0%, var(--color-primary-400) 50%, var(--color-success-500) 90%, transparent 100%);
    transform: translateX(-50%);
    opacity: 0.4;
}

.timeline-premium-step {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 48px;
    position: relative;
}
.timeline-premium-step:last-child {
    margin-bottom: 0;
}

.timeline-premium-step:nth-child(even) .step-card-left {
    order: 3;
}

.timeline-premium-step:nth-child(even) .step-center {
    order: 2;
}

.timeline-premium-step:nth-child(even) .step-card-right {
    order: 1;
}

.step-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-400) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(63, 192, 185, 0.35);
    flex-shrink: 0;
}

.step-circle.orange { background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-400) 100%); box-shadow: 0 8px 24px rgba(63, 192, 185, 0.35); }
.step-circle.green { background: linear-gradient(135deg, var(--color-success-500) 0%, #34D399 100%); box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35); }

.step-duration-badge {
    background: var(--color-neutral-100);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-neutral-500);
    white-space: nowrap;
}

.step-card {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    border-color: var(--color-primary-500);
    box-shadow: 0 16px 40px rgba(63, 192, 185, 0.1);
    transform: translateY(-2px);
}

.step-card-empty {
    padding: 0;
    background: transparent;
    border: none;
}

.step-card-left,
.step-card-right {
    /* side alignment */
}

.step-card .step-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(63, 192, 185, 0.1);
    color: var(--color-primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-card .step-icon-sm.orange { background: rgba(63, 192, 185, 0.1); color: var(--color-primary-500); }
.step-card .step-icon-sm.green { background: rgba(16, 185, 129, 0.1); color: var(--color-success-500); }

.step-card .step-icon-sm i,
.step-card .step-icon-sm svg {
    width: 20px;
    height: 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--color-neutral-900);
    margin-bottom: 8px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--color-neutral-500);
    line-height: 1.65;
    margin-bottom: 12px;
}

.step-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-neutral-600);
    font-weight: 500;
}

.step-card ul li i,
.step-card ul li svg {
    width: 14px;
    height: 14px;
    color: var(--color-success-500);
    flex-shrink: 0;
}

.timeline-summary-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    border-radius: 20px;
    padding: 28px 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.timeline-summary-item {
    text-align: center;
    color: #FFF;
}

.timeline-summary-item .tsi-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-400);
    display: block;
    line-height: 1;
}

.timeline-summary-item .tsi-label {
    font-size: 0.8rem;
    color: var(--color-neutral-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 4px;
}

.timeline-summary-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
    .timeline-premium-line { display: none; }
    .timeline-premium-step {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-card-empty { display: none; }
    .step-center { flex-direction: row; justify-content: flex-start; }
    .timeline-premium-step:nth-child(even) .step-card-left,
    .timeline-premium-step:nth-child(even) .step-center,
    .timeline-premium-step:nth-child(even) .step-card-right {
        order: unset;
    }
    .timeline-summary-bar { padding: 24px; }
}

/* === BLOG — ESTRUTURA ROBUSTA === */
.blog-hero-rich,
.blog-hero {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    padding: 180px 0 100px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero-rich::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.blog-hero-rich::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 192, 185, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-inner h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.blog-hero-inner p {
    font-size: 1.2rem;
    color: var(--color-neutral-300);
    margin-bottom: 36px;
    line-height: 1.8;
}

/* Blog Search */
.blog-search-bar {
    display: flex;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease;
}

.blog-search-bar:focus-within {
    border-color: var(--color-primary-500);
}

.blog-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 1rem;
    color: #FFFFFF;
    font-family: var(--font-body);
}

.blog-search-bar input::placeholder {
    color: var(--color-neutral-400);
}

.blog-search-bar button {
    background: var(--color-primary-500);
    border: none;
    padding: 0 24px;
    cursor: pointer;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 15px;
    transition: background 0.3s ease;
}

.blog-search-bar button:hover {
    background: var(--color-primary-600);
}

.blog-search-bar button i {
    width: 18px;
    height: 18px;
}

/* Blog Stats */
.blog-hero-stats {
    display: flex;
    gap: 36px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.blog-hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-neutral-300);
}

.blog-hero-stat i {
    width: 20px;
    height: 20px;
    color: var(--color-primary-400);
}

.blog-hero-stat strong {
    color: #FFF;
    font-weight: 700;
}

/* Blog Categories */
.blog-categories {
    padding: 32px 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-neutral-200);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.blog-categories-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.blog-categories-inner::-webkit-scrollbar { display: none; }

.blog-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid var(--color-neutral-200);
    background: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--color-neutral-600);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.blog-category-btn:hover {
    border-color: var(--color-primary-500);
    color: var(--color-primary-500);
    background: rgba(63, 192, 185, 0.05);
}

.blog-category-btn.active {
    background: var(--color-primary-500);
    border-color: var(--color-primary-500);
    color: #FFF;
}

.blog-category-btn i {
    width: 15px;
    height: 15px;
}

/* Blog Main Area */
.blog-main-section {
    padding: 64px 0 100px;
    background: var(--color-neutral-50);
}

/* Featured Post */
.blog-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--color-neutral-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    margin-bottom: 56px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.blog-featured-image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-400));
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-featured-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(63, 192, 185, 0.1);
    color: var(--color-primary-500);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
}

.blog-featured-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    color: var(--color-neutral-900);
    margin-bottom: 16px;
    line-height: 1.35;
}

.blog-featured-content p {
    font-size: 1rem;
    color: var(--color-neutral-500);
    line-height: 1.75;
    margin-bottom: 24px;
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.blog-featured-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-neutral-400);
    font-weight: 500;
}

.blog-featured-meta i {
    width: 14px;
    height: 14px;
}

/* Blog Grid 2.0 */
.blog-section-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
}

.blog-section-title h3 {
    font-size: 1.5rem;
    color: var(--color-neutral-900);
    margin: 0;
}

.blog-section-title a {
    font-size: 14px;
    color: var(--color-primary-500);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.blog-section-title a:hover {
    gap: 10px;
}

.blog-section-title a i {
    width: 14px;
    height: 14px;
}

.blog-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Blog Card V2 */
.blog-card-v2 {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--color-neutral-200);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary-500);
}

.blog-card-v2-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.blog-card-v2:hover .blog-card-v2-image img {
    transform: scale(1.05);
}

.blog-card-v2-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: rgba(63, 192, 185, 0.9);
    backdrop-filter: blur(8px);
    color: #FFF;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-v2-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-v2-body h3 {
    font-size: 1.1rem;
    color: var(--color-neutral-900);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.blog-card-v2:hover .blog-card-v2-body h3 {
    color: var(--color-primary-500);
}

.blog-card-v2-excerpt {
    font-size: 0.9rem;
    color: var(--color-neutral-500);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.blog-card-v2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--color-neutral-100);
}

.blog-card-v2-meta {
    display: flex;
    gap: 14px;
}

.blog-card-v2-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-neutral-400);
    font-weight: 500;
}

.blog-card-v2-meta i {
    width: 13px;
    height: 13px;
}

.blog-read-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-500);
    transition: gap 0.25s ease;
}

.blog-read-link:hover {
    gap: 10px;
    color: var(--color-primary-700);
}

.blog-read-link i {
    width: 14px;
    height: 14px;
}

/* Blog Newsletter — bloco inline */
.blog-cta-inline {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-700) 100%);
    border-radius: 24px;
    padding: 48px;
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

.blog-cta-inline::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta-content {
    flex: 1;
}

.blog-cta-content h3 {
    font-size: 1.6rem;
    color: #FFF;
    margin-bottom: 10px;
}

.blog-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
}

.blog-cta-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    min-width: 360px;
}

.blog-cta-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s ease;
}

.blog-cta-form input::placeholder { color: rgba(255,255,255,0.6); }

.blog-cta-form input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.2);
}

.blog-cta-form button {
    padding: 14px 24px;
    background: var(--color-primary-500);
    color: #FFF;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.blog-cta-form button:hover {
    background: var(--color-primary-600);
    transform: translateY(-2px);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-image { min-height: 280px; }
    .blog-cta-inline { flex-direction: column; gap: 28px; }
    .blog-cta-form { min-width: 100%; flex-direction: column; }
}

@media (max-width: 768px) {
    .blog-hero-rich,
    .blog-hero { padding: 140px 0 80px; }
    .blog-grid-v2 { grid-template-columns: 1fr; gap: 20px; }
    .blog-categories { top: 72px; }
    .blog-cta-inline { padding: 32px 24px; }
    .blog-featured-content { padding: 28px 24px; }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(1rem);
    background: var(--color-neutral-900);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 99997;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.toast-notification.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast-notification i {
    width: 18px;
    height: 18px;
    color: var(--color-success-500);
}

/* Blog No Results */
.blog-no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-neutral-400);
}

.blog-no-results i {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.blog-no-results p {
    color: var(--color-neutral-500);
    font-size: 1.1rem;
}

/* ===== GRID UTILITY CLASSES ===== */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}
.grid-5-col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* === SOLUCOES — HERO APRIMORADO === */
.page-hero-enhanced {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    padding: 180px 0 100px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.06) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.06) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

.page-hero-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(63, 192, 185, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-enhanced .container {
    position: relative;
    z-index: 2;
}

.page-hero-enhanced .page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.page-hero-enhanced .page-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-neutral-300);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.page-hero-stats-row {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.page-hero-stat {
    text-align: center;
}

.page-hero-stat .phs-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-400);
    display: block;
    line-height: 1;
}

.page-hero-stat .phs-label {
    font-size: 0.8rem;
    color: var(--color-neutral-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-top: 6px;
}

.page-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

@media (max-width: 768px) {
    .page-hero-enhanced { padding: 140px 0 80px; }
    .page-hero-stats-row { gap: 24px; }
    .page-hero-stat .phs-value { font-size: 2rem; }
}

/* =====================================================
   INDEX.HTML - ADDITIONAL COMPONENT STYLES
   ===================================================== */

/* --- Section Variants --- */
.section--white {
    background: #FFFFFF;
}

.section--light {
    background: var(--color-neutral-50);
    overflow: hidden;
}

/* --- Utility Text Colors --- */
.text-teal {
    color: var(--color-primary-500);
}

.text-green {
    color: var(--color-success-500);
}

.text-purple {
    color: #8B5CF6;
}

/* --- Section CTA Center --- */
.section-cta-center {
    text-align: center;
    margin-top: 48px;
}

/* --- Section Badge Inline Variant --- */
.section-badge--inline {
    margin-bottom: 16px;
    display: inline-flex;
}

/* --- Projects Showcase Content Styles --- */
.projects-showcase-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--color-neutral-900);
    margin-bottom: 14px;
    font-weight: 800;
}

.projects-showcase-text {
    color: var(--color-neutral-600);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* --- Feature Icon Variants --- */
.feature-icon--teal {
    background: rgba(63, 192, 185, 0.12);
    color: var(--color-primary-500);
}

.feature-icon--green {
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-success-500);
}

/* --- Video Embed Wrapper --- */
.video-embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-embed-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-embed-caption {
    text-align: center;
    font-size: 14px;
    color: var(--color-neutral-500);
    margin-top: 16px;
}

.video-embed-caption-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    color: var(--color-primary-500);
}

.video-embed-link {
    color: var(--color-primary-500);
    font-weight: 600;
}

.video-embed-link:hover {
    color: var(--color-primary-400);
}

/* --- Process Step Highlight Card --- */
.step-card--highlight {
    border-color: var(--color-primary-500);
    box-shadow: 0 12px 40px rgba(63, 192, 185, 0.15);
}

.step-highlight-badge {
    margin-top: 14px;
    padding: 10px 16px;
    background: rgba(63, 192, 185, 0.08);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-500);
    font-weight: 700;
    font-size: 0.9rem;
}

.step-highlight-badge i,
.step-highlight-badge svg {
    width: 16px;
    height: 16px;
}

/* --- Process Step Circle Teal Variant --- */
.step-circle.teal {
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-400));
    color: #fff;
}

/* --- Wall Composition Section --- */
.wall-composition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

@media (max-width: 960px) {
    .wall-composition-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.wall-layers-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wall-layer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.wall-layer:hover {
    transform: translateX(8px);
}

.wall-layer--teal {
    background: linear-gradient(90deg, rgba(63, 192, 185, 0.08), rgba(63, 192, 185, 0.02));
    border-left: 4px solid var(--color-primary-500);
}

.wall-layer--teal:hover {
    background: linear-gradient(90deg, rgba(63, 192, 185, 0.15), rgba(63, 192, 185, 0.04));
}

.wall-layer--green {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
    border-left: 4px solid var(--color-success-500);
}

.wall-layer--green:hover {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.04));
}

.wall-layer--slate {
    background: linear-gradient(90deg, rgba(71, 85, 105, 0.08), rgba(71, 85, 105, 0.02));
    border-left: 4px solid var(--color-neutral-600);
}

.wall-layer--slate:hover {
    background: linear-gradient(90deg, rgba(71, 85, 105, 0.15), rgba(71, 85, 105, 0.04));
}

.wall-layer--primary {
    background: linear-gradient(90deg, rgba(63, 192, 185, 0.12), rgba(63, 192, 185, 0.04));
    border-left: 4px solid var(--color-primary-500);
    border: 2px solid rgba(63, 192, 185, 0.2);
    padding: 18px 20px;
}

.wall-layer--primary:hover {
    background: linear-gradient(90deg, rgba(63, 192, 185, 0.2), rgba(63, 192, 185, 0.06));
}

.wall-layer--purple {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.02));
    border-left: 4px solid #8B5CF6;
}

.wall-layer--purple:hover {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.04));
}

.wall-layer--blue {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
    border-left: 4px solid #3B82F6;
}

.wall-layer--blue:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.04));
}

.wall-layer-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wall-layer-icon i,
.wall-layer-icon svg {
    width: 20px;
    height: 20px;
}

.wall-layer-icon--teal {
    background: rgba(63, 192, 185, 0.15);
    color: var(--color-primary-500);
}

.wall-layer-icon--green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success-500);
}

.wall-layer-icon--slate {
    background: rgba(71, 85, 105, 0.15);
    color: var(--color-neutral-600);
}

.wall-layer-icon--purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
}

.wall-layer-icon--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.wall-layer-text strong {
    color: var(--color-neutral-900);
    font-size: 0.95rem;
}

.wall-layer-text p {
    color: var(--color-neutral-500);
    font-size: 0.8rem;
    margin: 2px 0 0;
}

/* --- Wall Info Card --- */
.wall-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wall-info-card {
    background: #fff;
    border: 2px solid var(--color-neutral-200);
    border-radius: 24px;
    padding: 40px;
}

.wall-info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-neutral-900);
    margin-bottom: 8px;
    font-weight: 800;
}

.wall-info-description {
    color: var(--color-neutral-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.wall-stat {
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.wall-stat--blue {
    background: #F0F9FF;
}

.wall-stat--green {
    background: #F0FDF4;
}

.wall-stat--teal {
    background: #F0FDFA;
}

.wall-stat--purple {
    background: #F5F3FF;
}

.wall-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
}

.wall-stat-label {
    font-size: 0.85rem;
    color: var(--color-neutral-500);
    font-weight: 600;
}

/* --- Tego Frame Badge --- */
.tego-badge {
    background: linear-gradient(135deg, var(--color-neutral-900), var(--color-neutral-800));
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tego-badge-icon {
    width: 56px;
    height: 56px;
    background: rgba(87, 206, 200, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tego-badge-icon i,
.tego-badge-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary-400);
}

.tego-badge-label {
    color: var(--color-primary-400);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tego-badge-text {
    color: var(--color-neutral-400);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.tego-badge-text strong {
    color: #fff;
}

/* --- Financing Section --- */
.financing-section {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    color: #fff;
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .financing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.financing-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: background 0.3s ease;
}

.financing-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.financing-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.financing-card-icon i,
.financing-card-icon svg {
    width: 32px;
    height: 32px;
}

.financing-card-icon--teal {
    background: rgba(63, 192, 185, 0.2);
    color: var(--color-primary-400);
}

.financing-card-icon--green {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-success-500);
}

.financing-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.financing-card-text {
    color: var(--color-neutral-400);
    line-height: 1.7;
    margin-bottom: 16px;
}

.financing-bank-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bank-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(63, 192, 185, 0.2);
    color: var(--color-primary-400);
    border: 1px solid rgba(63, 192, 185, 0.3);
}

/* --- Stat Plus Sign --- */
.stat-plus {
    font-size: 0.65em;
    vertical-align: super;
    margin-left: 1px;
    color: var(--color-primary-400);
}

/* ========================================
   SOLUCOES PAGE STYLES
   ======================================== */

/* Hero Trust Override */
.sol-hero-trust {
    margin-top: 36px;
    justify-content: center;
}

/* Quick Comparison Strip */
.sol-comparison-strip {
    background: #FFFFFF;
    padding: 60px 0;
    border-bottom: 1px solid var(--color-neutral-200);
}

.sol-strip-row {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sol-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--color-neutral-50);
    border-radius: 14px;
    border: 2px solid var(--color-neutral-200);
}

.sol-strip-item i {
    width: 20px;
    height: 20px;
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.sol-strip-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-neutral-700);
}

.sol-strip-item strong {
    color: var(--color-primary-500);
}

.sol-strip-item--green i {
    color: var(--color-success-500);
}

.sol-strip-item--green strong {
    color: var(--color-success-500);
}

/* Benefits Section */
.sol-benefits-section {
    background: #FFFFFF;
}

.sol-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sol-benefit-card {
    background: #FFFFFF;
    padding: 48px 36px;
    border-radius: 20px;
    border: 2px solid var(--color-neutral-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.sol-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(63, 192, 185, 0.12);
    border-color: var(--color-primary-500);
}

.sol-benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.sol-benefit-icon i {
    width: 40px;
    height: 40px;
}

.sol-benefit-icon--primary {
    background: rgba(63, 192, 185, 0.1);
    color: var(--color-primary-500);
}

.sol-benefit-icon--success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success-500);
}

.sol-benefit-card h3 {
    font-size: 1.5rem;
    color: var(--color-neutral-900);
    margin-bottom: 16px;
    font-weight: 700;
}

.sol-benefit-card p {
    color: var(--color-neutral-500);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.sol-benefit-card strong {
    color: var(--color-primary-500);
}

.sol-benefit-card:last-child strong {
    color: var(--color-success-500);
}

.sol-benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.sol-benefit-tag i {
    width: 16px;
    height: 16px;
}

.sol-benefit-tag--primary {
    background: rgba(63, 192, 185, 0.08);
    color: var(--color-primary-500);
}

.sol-benefit-tag--success {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-success-500);
}

/* Comparison Section */
.sol-comparison-section {
    background: var(--color-neutral-50);
}

.sol-comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--color-neutral-200);
    background: #FFFFFF;
}

.sol-comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--color-neutral-900);
    color: #FFFFFF;
}

.sol-comparison-header .sol-comparison-col {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 0.95rem;
}

.sol-comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid var(--color-neutral-100);
    transition: background 0.2s ease;
}

.sol-comparison-row:last-child {
    border-bottom: none;
}

.sol-comparison-row:hover {
    background: var(--color-neutral-50);
}

.sol-comparison-col {
    padding: 16px 24px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.sol-comparison-col--label {
    font-weight: 600;
    color: var(--color-neutral-900);
}

.sol-comparison-col--sf {
    color: var(--color-neutral-700);
}

.sol-comparison-col--alv {
    color: var(--color-neutral-400);
}

.sol-comparison-col--highlight {
    color: var(--color-primary-500);
    font-weight: 700;
}

/* Process Section */
.sol-process-section {
    background: var(--color-neutral-50);
}

.sol-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sol-process-step {
    text-align: center;
    padding: 32px 20px;
    background: #FFFFFF;
    border-radius: 20px;
    border: 2px solid var(--color-neutral-200);
    position: relative;
    transition: all 0.35s ease;
}

.sol-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.sol-process-step--featured {
    border-color: var(--color-primary-500);
    box-shadow: 0 8px 30px rgba(63, 192, 185, 0.12);
}

.sol-process-step--success {
    border-color: var(--color-success-500);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.sol-process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
}

.sol-process-number--success {
    background: linear-gradient(135deg, var(--color-success-500), #34D399);
}

.sol-process-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary-500);
    margin-bottom: 12px;
}

.sol-process-icon--success {
    color: var(--color-success-500);
}

.sol-process-step h4 {
    font-size: 1rem;
    color: var(--color-neutral-900);
    margin-bottom: 8px;
}

.sol-process-step p {
    font-size: 0.875rem;
    color: var(--color-neutral-500);
    margin: 0;
    line-height: 1.6;
}

.sol-process-step p strong {
    color: var(--color-primary-500);
}

.sol-process-step--success p strong {
    color: var(--color-success-500);
}

.sol-process-arrow {
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-neutral-300);
    z-index: 1;
}

/* Technology Section (Dark) */
.sol-tech-section {
    position: relative;
    overflow: hidden;
}

.sol-tech-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sol-tech-glow--top {
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 192, 185, 0.08) 0%, transparent 70%);
}

.sol-tech-glow--bottom {
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(63, 192, 185, 0.06) 0%, transparent 70%);
}

.sol-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sol-tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol-tech-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(63, 192, 185, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sol-tech-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(63, 192, 185, 0.12);
    color: var(--color-primary-500);
}

.sol-tech-card-icon i {
    width: 32px;
    height: 32px;
}

.sol-tech-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.sol-tech-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.sol-tech-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    padding: 36px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.sol-tech-stat {
    text-align: center;
}

.sol-tech-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.sol-tech-stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
}

.sol-tech-cta {
    text-align: center;
    margin-top: 48px;
}

/* Financing Section */
.sol-financing-section {
    background: var(--color-neutral-50);
}

.sol-banks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sol-bank-card {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 20px;
    border: 2px solid var(--color-neutral-200);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sol-bank-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.sol-bank-card--dark {
    background: linear-gradient(135deg, var(--color-neutral-900), var(--color-neutral-800));
    border-color: transparent;
}

.sol-bank-card--dark h4 {
    color: #FFFFFF;
}

.sol-bank-card--dark p {
    color: var(--color-neutral-400);
}

.sol-bank-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sol-bank-icon i {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
}

.sol-bank-icon--caixa {
    background: #0071CE;
}

.sol-bank-icon--bradesco {
    background: #CC092F;
}

.sol-bank-icon--itau {
    background: #F37022;
}

.sol-bank-icon--abnt {
    background: rgba(63, 192, 185, 0.2);
}

.sol-bank-icon--abnt i {
    color: var(--color-primary-400);
}

.sol-bank-card h4 {
    font-size: 1rem;
    color: var(--color-neutral-900);
    font-weight: 700;
    margin-bottom: 8px;
}

.sol-bank-card p {
    font-size: 13px;
    color: var(--color-neutral-500);
    margin-bottom: 12px;
}

.sol-bank-badge {
    display: inline-block;
    font-size: 11px;
    background: #F0FDF4;
    color: #16A34A;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.sol-bank-badge::before {
    content: '\2713 ';
}

.sol-bank-badge--mcmv {
    background: #F0FDF4;
    color: #16A34A;
}

.sol-bank-badge--cert {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-success-500);
}

.sol-financing-note {
    margin-top: 32px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 32px;
    border: 2px solid #BBF7D0;
    text-align: center;
}

.sol-financing-note p {
    color: #15803D;
    font-size: 1rem;
    margin: 0;
}

.sol-financing-note a {
    color: var(--color-primary-500);
    font-weight: 700;
    margin-left: 8px;
}

.sol-financing-note a:hover {
    color: var(--color-primary-700);
}

/* Partners Section */
.sol-partners-section {
    background: #FFFFFF;
}

.sol-badge--success {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-success-500);
    border-color: rgba(16, 185, 129, 0.15);
}

.sol-partners-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.sol-partner-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 36px;
    border: 2px solid var(--color-neutral-200);
    border-radius: 20px;
    background: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    text-align: center;
}

.sol-partner-pill:hover {
    border-color: var(--color-primary-500);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(63, 192, 185, 0.1);
}

.sol-partner-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 192, 185, 0.08);
    color: var(--color-primary-500);
    margin-bottom: 16px;
}

.sol-partner-icon i {
    width: 28px;
    height: 28px;
}

.sol-partner-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 6px;
}

.sol-partner-desc {
    color: var(--color-neutral-500);
    font-size: 0.8rem;
    font-weight: 500;
}

.sol-partners-badges {
    text-align: center;
    margin-top: 32px;
}

.sol-tego-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(63, 192, 185, 0.06);
    border: 1px solid rgba(63, 192, 185, 0.15);
    border-radius: 100px;
    margin-bottom: 16px;
}

.sol-tego-badge i {
    width: 24px;
    height: 24px;
    color: var(--color-primary-500);
}

.sol-tego-badge span {
    font-size: 0.95rem;
    color: var(--color-neutral-700);
    font-weight: 500;
}

.sol-tego-badge strong {
    color: var(--color-primary-500);
    font-weight: 700;
}

.sol-abnt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 100px;
    color: #15803D;
    font-size: 0.85rem;
    font-weight: 600;
}

.sol-abnt-badge i {
    width: 16px;
    height: 16px;
}

/* Solucoes Responsive */
@media (max-width: 1024px) {
    .sol-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .sol-process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .sol-benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .sol-tech-grid {
        grid-template-columns: 1fr;
    }

    .sol-tech-stats {
        flex-wrap: wrap;
        gap: 32px;
        padding: 28px 24px;
    }

    .sol-tech-stat-value {
        font-size: 2rem;
    }

    .sol-partners-row {
        gap: 16px;
    }

    .sol-partner-pill {
        min-width: 140px;
        padding: 24px 20px;
    }

    .sol-strip-row {
        flex-direction: column;
        align-items: stretch;
    }

    .sol-comparison-table {
        font-size: 0.85rem;
    }

    .sol-comparison-col {
        padding: 12px 16px;
    }

    .sol-comparison-header .sol-comparison-col {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .sol-banks-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Badge Inline (Obras Públicas, etc.) */
.card-badge-inline {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(63, 192, 185, 0.1);
    border: 1px solid rgba(63, 192, 185, 0.2);
    border-radius: 100px;
    color: var(--color-primary-500);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ========================================
   INVESTOR SECTION (solucoes.html)
   ======================================== */
.sol-investor-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%);
    color: #FFFFFF;
    text-align: center;
}

.sol-investor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sol-investor-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sol-investor-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.sol-investor-icon {
    width: 56px;
    height: 56px;
    background: rgba(63, 192, 185, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sol-investor-icon i {
    width: 28px;
    height: 28px;
    color: var(--color-primary-500);
}

.sol-investor-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.sol-investor-card p {
    font-size: 14px;
    color: var(--color-neutral-400);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .sol-investor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sol-investor-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PROJETOS / CATALOG PAGE STYLES
   ======================================== */

/* Hero */
.cat-hero {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 50%, var(--color-neutral-900) 100%);
    padding: 180px 0 100px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cat-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(63, 192, 185, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(63, 192, 185, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cat-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.cat-hero .container {
    position: relative;
    z-index: 1;
}

.cat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(63, 192, 185, 0.15);
    border: 1px solid rgba(63, 192, 185, 0.3);
    border-radius: 100px;
    color: var(--color-primary-400);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.cat-hero-badge i {
    width: 16px;
    height: 16px;
}

.cat-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.cat-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-neutral-300);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.cat-hero-subtitle strong {
    color: #FFFFFF;
}

/* Filters */
.cat-filters {
    padding: 60px 0 20px;
    background: #FFFFFF;
}

/* Grid Section */
.cat-grid-section {
    padding: 40px 0 100px;
    background: #FFFFFF;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

/* Catalog Card */
.cat-card {
    background: #FFFFFF;
    border: 2px solid var(--color-neutral-200);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: catFadeInUp 0.5s ease forwards;
}

.cat-card:hover {
    border-color: var(--color-primary-500);
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(63, 192, 185, 0.12);
}

.cat-card.hidden {
    display: none;
}

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

.cat-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.cat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cat-card:hover .cat-card-image img {
    transform: scale(1.05);
}

.cat-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(11, 19, 43, 0.8);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.cat-card-body {
    padding: 28px;
}

.cat-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--color-neutral-900);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.cat-card-desc {
    color: var(--color-neutral-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cat-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.cat-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.cat-spec i {
    width: 14px;
    height: 14px;
}

.cat-spec--area {
    background: #EDF7FF;
    color: var(--color-primary-500);
}

.cat-spec--rooms {
    background: #F0FDF4;
    color: #047857;
}

.cat-spec--time {
    background: #EDFAF9;
    color: var(--color-primary-600);
}

.cat-card-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* CTA Section */
.cat-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-400) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cat-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cat-cta .container {
    position: relative;
    z-index: 1;
}

.cat-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.cat-cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cat-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cat-cta .btn-secondary {
    background: #FFFFFF;
    color: var(--color-primary-500);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cat-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cat-cta .btn-glass {
    border-color: rgba(255, 255, 255, 0.3);
}

.cat-cta-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cat-cta-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
}

.cat-cta-trust .trust-item i {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.cat-cta-trust .trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

/* Catalog Responsive */
@media (max-width: 768px) {
    .cat-hero {
        padding: 140px 0 80px;
    }

    .sobre-hero-title,
    .tech-hero-title {
        font-size: 2rem;
    }

    .sobre-hero-subtitle,
    .tech-hero-subtitle {
        font-size: 1.05rem;
    }

    .cat-hero-title {
        font-size: 2rem;
    }

    .cat-hero-subtitle {
        font-size: 1.05rem;
    }

    .cat-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cat-card-image {
        height: 220px;
    }

    .cat-card-body {
        padding: 24px;
    }

    .cat-cta {
        padding: 80px 0;
    }

    .cat-cta-trust .trust-divider {
        display: none;
    }

    .cat-cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .cat-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cat-cta-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* =====================================================
   CORREÇÕES STEELNER — Fev 2026
   ===================================================== */

/* -------------------------------------------------------
   BOTÃO DE BUSCA (NAVBAR DESKTOP)
------------------------------------------------------- */
.navbar-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 8px;
}

.btn-search-trigger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-neutral-100);
    border: 1px solid var(--color-neutral-200);
    border-radius: 10px;
    color: var(--color-neutral-600);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.btn-search-trigger:hover {
    background: var(--color-neutral-200);
    color: var(--color-primary-500);
    border-color: var(--color-primary-500);
}

.btn-search-trigger svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
}

/* -------------------------------------------------------
   HAMBURGER MOBILE — VISÍVEL E ANIMAÇÃO X CORRETA
------------------------------------------------------- */
@media (max-width: 1024px) {
    /* Botão visível */
    .navbar-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        padding: 8px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 1002 !important;
        position: relative !important;
    }

    /* Linhas visíveis */
    .navbar-toggle .toggle-line,
    .navbar-toggle span {
        display: block !important;
        visibility: visible !important;
        width: 26px !important;
        height: 3px !important;
        background: var(--color-neutral-700) !important;
        border-radius: 3px !important;
        opacity: 1 !important;
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                    opacity  0.3s cubic-bezier(0.4,0,0.2,1) !important;
        flex-shrink: 0 !important;
        transform-origin: center center !important;
    }

    /* Animação X — translateY PRIMEIRO, rotate DEPOIS */
    .navbar-toggle.active .toggle-line:nth-child(1),
    .navbar-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    .navbar-toggle.active .toggle-line:nth-child(2),
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
    }

    .navbar-toggle.active .toggle-line:nth-child(3),
    .navbar-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }

    /* Overlay escuro atrás do menu */
    body.menu-open .navbar-overlay {
        display: block !important;
        opacity: 1 !important;
    }

    /* Botão busca no mobile — versão compacta */
    .navbar-cta {
        width: 100%;
        margin-left: 0;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid var(--color-neutral-100);
    }

    .btn-search-trigger {
        width: 100%;
        height: 44px;
        border-radius: 8px;
        justify-content: flex-start;
        padding: 0 14px;
        gap: 10px;
        background: var(--color-neutral-50);
    }

    .btn-search-trigger::after {
        content: 'Buscar no site...';
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--color-neutral-400);
    }

    /* Remove borda do último item do menu mobile */
    .navbar-nav li:last-child .nav-link {
        border-bottom: none !important;
    }

    /* Nav link active no mobile — sem underline animado, só cor */
    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        color: var(--color-primary-500) !important;
        font-weight: 600;
    }
}

/* Overlay escuro (base) */
.navbar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 19, 43, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 997;
    transition: opacity 0.4s ease;
}

/* -------------------------------------------------------
   MODAL DE BUSCA — CSS COMPLETO
------------------------------------------------------- */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.search-modal.active {
    display: flex;
}

.search-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 19, 43, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.search-modal-content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 640px;
    margin: 0 20px;
    overflow: hidden;
    animation: searchModalIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes searchModalIn {
    from { opacity: 0; transform: translateY(-16px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.search-modal-header {
    border-bottom: 1px solid var(--color-neutral-100);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.search-form > i,
.search-form > svg {
    width: 20px;
    height: 20px;
    color: var(--color-neutral-400);
    flex-shrink: 0;
}

#searchInput {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-neutral-900);
    background: transparent;
}

#searchInput::placeholder {
    color: var(--color-neutral-400);
}

.search-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-neutral-100);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--color-neutral-600);
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.search-close:hover {
    background: var(--color-neutral-200);
    color: var(--color-neutral-900);
}

.search-shortcut {
    padding: 8px 20px;
    background: var(--color-neutral-50);
    border-top: 1px solid var(--color-neutral-100);
    font-size: 12px;
    color: var(--color-neutral-400);
}

.search-shortcut kbd {
    background: var(--color-neutral-200);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--color-neutral-600);
}

.search-modal-body {
    max-height: 55vh;
    overflow-y: auto;
}

#searchResults {
    padding: 16px;
}

.search-results-header {
    padding: 4px 0 12px;
    font-size: 13px;
    color: var(--color-neutral-500);
    border-bottom: 1px solid var(--color-neutral-100);
    margin-bottom: 12px;
}

.search-result-item {
    display: block;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-bottom: 6px;
}

.search-result-item:hover {
    background: var(--color-neutral-50);
}

.search-result-type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-500);
    margin-bottom: 4px;
}

.search-result-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 6px;
    font-family: var(--font-display);
}

.search-result-title mark,
.search-result-excerpt mark {
    background: rgba(63, 192, 185, 0.18);
    color: var(--color-primary-600);
    border-radius: 2px;
    padding: 0 2px;
}

.search-result-excerpt {
    font-size: 13px;
    color: var(--color-neutral-500);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-neutral-400);
}

.search-no-results,
.search-error {
    text-align: center;
    padding: 48px 20px;
    color: var(--color-neutral-400);
}

.search-no-results p,
.search-error p {
    font-size: 14px;
    color: var(--color-neutral-400);
    margin: 8px 0 0;
}

body.search-open {
    overflow: hidden;
}

/* LGPD banner — regras antigas removidas, novo banner em uso */

/* -------------------------------------------------------
   FOOTER — ESPAÇAMENTO + GRID 3 COLUNAS
------------------------------------------------------- */
.footer-brand .footer-description {
    margin-top: 20px;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr !important;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* -------------------------------------------------------
   PRELOADER — LOGO IMAGEM
------------------------------------------------------- */
.loader-logo {
    opacity: 0;
    animation: loaderFadeIn 0.8s ease forwards 0.2s;
}

.loader-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

/* -------------------------------------------------------
   BACK-TO-TOP — Removido do HTML, ocultar se sobrar
------------------------------------------------------- */
.back-to-top {
    display: none !important;
}

/* -------------------------------------------------------
   HOME PAGE V9 FIXES
------------------------------------------------------- */

/* --- Hero badge: ensure visibility with no icon --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(63, 192, 185, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(63, 192, 185, 0.4);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 32px;
    position: relative;
}

/* --- Trust items: text-only (no icon gap) --- */
.hero-trust .trust-item {
    gap: 0;
}

/* --- Scroll indicator fix --- */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

/* --- Section badge: text-only, remove orphan gap --- */
.section-badge i,
.section-badge svg {
    display: none !important;
}

/* --- Timeline step animation --- */
@keyframes timelineSlideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes timelineSlideRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes timelineFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.timeline-premium-step .step-card-left {
    opacity: 0;
    animation: timelineSlideLeft 0.6s ease forwards;
}
.timeline-premium-step:nth-child(2) .step-card-right,
.timeline-premium-step:nth-child(4) .step-card-right {
    opacity: 0;
    animation: timelineSlideRight 0.6s ease forwards;
}
.timeline-premium-step:nth-child(1) .step-card-left { animation-delay: 0.1s; }
.timeline-premium-step:nth-child(2) .step-card-right { animation-delay: 0.25s; }
.timeline-premium-step:nth-child(3) .step-card-left { animation-delay: 0.4s; }
.timeline-premium-step:nth-child(4) .step-card-right { animation-delay: 0.55s; }
.timeline-premium-step .step-center {
    animation: timelineFadeIn 0.5s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

/* empty cards should stay invisible */
.step-card-empty {
    opacity: 0 !important;
    animation: none !important;
    pointer-events: none;
    visibility: hidden;
}

/* --- Bank badges on dark background --- */
.financing-bank-badges .bank-badge {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
}

/* --- Wall layer: ensure no purple bleeds through --- */
.wall-layer--purple {
    background: linear-gradient(90deg, rgba(30,58,95,0.10), rgba(30,58,95,0.03));
    border-left: 4px solid var(--color-neutral-500);
}
.wall-layer--purple:hover {
    background: linear-gradient(90deg, rgba(30,58,95,0.18), rgba(30,58,95,0.05));
}
.wall-layer-icon--purple {
    background: rgba(100, 116, 139, 0.15);
    color: var(--color-neutral-500);
}
.wall-stat--purple .wall-stat-value {
    color: var(--color-primary-500);
}

/* --- CTA trust items text-only --- */
.cta-final-trust .trust-item {
    gap: 0;
}

/* --- Comparison Cards/Table Toggle --- */
.comparison-cards {
    display: grid !important;
}
.comparison-cards:not(.active) {
    display: none !important;
}

/* =======================================================
   HOME V10 — COMPLETE FIX
======================================================= */

/* --- HERO: badge styling + spacing --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(63, 192, 185, 0.2);
    border: 1.5px solid rgba(63, 192, 185, 0.5);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.hero-subtitle {
    margin-bottom: 32px;
}
.hero-cta {
    margin-bottom: 40px;
}
.hero-trust {
    margin-bottom: 0;
}
/* btn hover: clean lift */
.btn-shine:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(63, 192, 185, 0.35) !important;
}

/* --- SF ACTION SECTION (nova seção Steel Frame em Ação) --- */
.sf-action-section {
    background: #FFFFFF;
    padding: 100px 0;
}
.sf-action-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 56px 0 60px;
}
.sf-block {
    background: var(--color-neutral-50);
    border: 1.5px solid var(--color-neutral-200);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sf-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.09);
    border-color: var(--color-primary-500);
}
.sf-block-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(15,23,42,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-neutral-900);
}
.sf-block-icon i { width: 28px; height: 28px; }
.sf-block-icon--teal { background: rgba(63,192,185,0.12); color: var(--color-primary-500); }
.sf-block-icon--green { background: rgba(16,185,129,0.12); color: var(--color-success-500); }
.sf-block h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 12px;
}
.sf-block p {
    font-size: 0.93rem;
    color: var(--color-neutral-500);
    line-height: 1.65;
    margin: 0;
}
.sf-action-video {
    max-width: 920px;
    margin: 0 auto 48px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}
.sf-action-video-player {
    width: 100%;
    height: auto;
    display: block;
}
/* YouTube inside SF Action */
.sf-action-youtube {
    max-width: 920px;
    margin: 48px auto;
}
.sf-action-youtube-title {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-neutral-500, var(--color-neutral-500));
    margin-bottom: 24px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .sf-action-blocks { grid-template-columns: 1fr; gap: 20px; }
    .sf-action-section { padding: 60px 0; }
}

/* --- COMPARATIVO: clean table --- */
.comp-table-wrap {
    max-width: 820px;
    margin: 56px auto 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.comp-row {
    display: grid;
    grid-template-columns: 2fr 1.4fr 1.4fr;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
}
.comp-row:hover { background: rgba(255,255,255,0.03); }
.comp-row--last { border-bottom: none; }
.comp-row--head {
    background: rgba(63,192,185,0.12);
    border-bottom: 2px solid rgba(63,192,185,0.3);
}
.comp-cell {
    padding: 16px 24px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.comp-cell--label {
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}
.comp-cell--sf {
    background: rgba(63,192,185,0.07);
    border-left: 1px solid rgba(63,192,185,0.2);
    border-right: 1px solid rgba(63,192,185,0.2);
    color: #FFFFFF;
}
.comp-cell--sf strong {
    color: var(--color-primary-400);
    font-size: 1rem;
    font-weight: 700;
}
.comp-cell--trad {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.comp-row--head .comp-cell {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 20px 24px;
}
.comp-row--head .comp-cell--sf {
    border-top: 3px solid var(--color-primary-500);
}
.comp-winner-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--color-primary-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    display: block;
}
@media (max-width: 640px) {
    .comp-row { grid-template-columns: 1.2fr 1fr 1fr; }
    .comp-cell { padding: 12px 14px; font-size: 0.82rem; }
    .comp-row--head .comp-cell { padding: 14px; }
}

/* --- YOUTUBE SECTION --- */
.yt-section { background: var(--color-neutral-50); padding: 80px 0; }
.yt-video-wrap {
    max-width: 900px;
    margin: 48px auto 0;
}
.yt-video-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.yt-video-inner iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* --- TIMELINE: garantir alternância e limpar --- */
.timeline-premium-step { position: relative; }
.timeline-premium-step .step-card-empty {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
/* garantir que step-card-left alterna */
.timeline-premium-step:nth-child(even) .step-card-left { order: 3 !important; }
.timeline-premium-step:nth-child(even) .step-center { order: 2 !important; }
.timeline-premium-step:nth-child(even) .step-card-right { order: 1 !important; }

/* --- WALL LAYERS: apenas teal e slate --- */
.wall-layer--blue,
.wall-layer--green {
    background: linear-gradient(90deg, rgba(63,192,185,0.08), rgba(63,192,185,0.02)) !important;
    border-left: 4px solid rgba(63,192,185,0.4) !important;
}
.wall-layer-icon--blue,
.wall-layer-icon--green {
    background: rgba(63,192,185,0.12) !important;
    color: var(--color-primary-500) !important;
}
.wall-stat--blue .wall-stat-value,
.wall-stat--green .wall-stat-value {
    color: var(--color-primary-500) !important;
}

/* ===== GSAP VISIBILITY SAFETY NET ===== */
/* If GSAP fails to load, ensure all content is visible */
body.no-gsap [data-animate],
body.no-gsap .section-header > *,
body.no-gsap .advantage-card,
body.no-gsap .wall-layer,
body.no-gsap .hero-badge,
body.no-gsap .hero-title,
body.no-gsap .hero-subtitle,
body.no-gsap .hero-cta,
body.no-gsap .hero-trust {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Noscript: if JS completely disabled */
noscript + main [data-animate],
noscript + main .section-header > *,
noscript + main .advantage-card,
noscript + main .wall-layer {
    opacity: 1 !important;
    transform: none !important;
}

/* =======================================================
   V13 — COMPREHENSIVE FIXES
======================================================= */

/* --- HERO: center everything, force visibility --- */
.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
}
.hero-badge,
.hero-title,
.hero-subtitle,
.hero-cta,
.hero-cta .btn,
.hero-trust,
.hero-trust .trust-item,
.scroll-indicator {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}
.hero-title {
    text-align: center;
}
.hero-subtitle {
    text-align: center;
    margin-bottom: 40px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- COMPARATIVO: force dark background --- */
.comparison-section,
.comparison-section.dark-section,
section.comparison-section {
    background: linear-gradient(180deg, var(--color-neutral-900) 0%, #162035 100%) !important;
    color: var(--color-neutral-200) !important;
}
.comparison-section .section-title,
.comparison-section .section-title.light {
    color: #FFFFFF !important;
}
.comparison-section .section-description,
.comparison-section .section-description.light {
    color: var(--color-neutral-300) !important;
}
.comparison-section .section-badge,
.comparison-section .section-badge.light {
    background: rgba(255,255,255,0.1) !important;
    color: var(--color-primary-400) !important;
    border-color: rgba(255,255,255,0.15) !important;
}
.comp-cell--label {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 600 !important;
}
.comp-cell--trad {
    color: rgba(255,255,255,0.6) !important;
}
.comp-cell--sf strong {
    color: var(--color-primary-400) !important;
}
.comp-row {
    border-bottom-color: rgba(255,255,255,0.08) !important;
}

/* --- SF EM AÇÃO: 2-column layout (video left, info right) --- */
.sf-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 56px 0 48px;
}
.sf-action-video-col {
    position: relative;
}
.sf-action-video-vertical {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    aspect-ratio: 9/16;
    max-height: 600px;
}
.sf-action-video-vertical video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sf-action-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sf-action-info-col .sf-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--color-neutral-50);
    border: 1.5px solid var(--color-neutral-200);
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sf-action-info-col .sf-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--color-primary-500);
}
.sf-action-info-col .sf-block-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.sf-block-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 6px;
}
.sf-block-text p {
    font-size: 0.9rem;
    color: var(--color-neutral-500);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .sf-action-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sf-action-video-vertical {
        max-height: 480px;
        aspect-ratio: 9/16;
        margin: 0 auto;
        max-width: 320px;
    }
}

/* --- 7 CAMADAS: card grid layout (clean, no dashes) --- */
.layers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0 40px;
}
.layer-card {
    background: #FFFFFF;
    border: 1.5px solid var(--color-neutral-200);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.layer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--color-primary-500);
}
.layer-card--highlight {
    grid-column: span 4;
    background: linear-gradient(135deg, var(--color-neutral-900), var(--color-neutral-800));
    border-color: rgba(63,192,185,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 36px;
    text-align: left;
}
.layer-card--highlight h3 {
    color: var(--color-primary-400);
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.layer-card--highlight p {
    color: var(--color-neutral-300);
    margin: 0;
}
.layer-card--highlight .layer-card-icon {
    background: rgba(63,192,185,0.15);
    color: var(--color-primary-400);
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.layer-card--highlight .layer-card-icon i {
    width: 32px;
    height: 32px;
}
.layer-card--highlight .layer-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
}
.layer-card:not(.layer-card--highlight) .layer-card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(63,192,185,0.1);
    line-height: 1;
    margin-bottom: 8px;
}
.layer-card:not(.layer-card--highlight) .layer-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(63,192,185,0.08);
    color: var(--color-primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.layer-card:not(.layer-card--highlight) .layer-card-icon i {
    width: 22px;
    height: 22px;
}
.layer-card:not(.layer-card--highlight) h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 6px;
}
.layer-card:not(.layer-card--highlight) p {
    font-size: 0.85rem;
    color: var(--color-neutral-500);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 960px) {
    .layers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .layer-card--highlight {
        grid-column: span 2;
    }
}
@media (max-width: 540px) {
    .layers-grid {
        grid-template-columns: 1fr;
    }
    .layer-card--highlight {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
}

/* Layers stats bar */
.layers-stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 40px;
    background: #FFFFFF;
    border: 1.5px solid var(--color-neutral-200);
    border-radius: 16px;
    margin-bottom: 32px;
}
.layers-stat {
    text-align: center;
}
.layers-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-500);
}
.layers-stat-label {
    font-size: 0.85rem;
    color: var(--color-neutral-500);
}
@media (max-width: 640px) {
    .layers-stats-bar {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px;
    }
    .layers-stat {
        flex: 1 1 40%;
    }
}

/* Tego badge new */
.tego-badge-new {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(63,192,185,0.06);
    border: 1px solid rgba(63,192,185,0.15);
    border-radius: 12px;
    margin-bottom: 32px;
}
.tego-badge-new i {
    width: 24px;
    height: 24px;
    color: var(--color-primary-500);
    flex-shrink: 0;
}
.tego-badge-new p {
    font-size: 0.9rem;
    color: var(--color-neutral-600);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================
   PADRONIZAÇÃO GLOBAL — Hero sections + CTA + Botões + WA
   ========================================================== */

/* ── 1. Todos os hero sections iguais ao cat-hero ── */
.page-hero,
.page-hero-enhanced,
.sobre-hero,
.tech-hero {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 50%, var(--color-neutral-900) 100%) !important;
    padding: 180px 0 100px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #FFFFFF;
}

/* Radial glow (igual cat-hero::before) */
.page-hero::before,
.page-hero-enhanced::before,
.sobre-hero::before,
.tech-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(63, 192, 185, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(63, 192, 185, 0.08) 0%, transparent 50%) !important;
    pointer-events: none;
}

/* Grid pattern (igual cat-hero::after) */
.page-hero::after,
.page-hero-enhanced::after,
.sobre-hero::after,
.tech-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 192, 185, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 192, 185, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Container z-index acima dos overlays */
.page-hero .container,
.page-hero-enhanced .container,
.sobre-hero .container,
.tech-hero .container {
    position: relative;
    z-index: 1;
}

/* Badges padronizados — sobre-hero e tech-hero */
.sobre-hero-badge,
.tech-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(63, 192, 185, 0.15) !important;
    border: 1px solid rgba(63, 192, 185, 0.3) !important;
    border-radius: 100px;
    color: var(--color-primary-400) !important;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Títulos padronizados */
.sobre-hero-title,
.tech-hero-title,
.page-hero-title {
    font-family: var(--font-display) !important;
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    color: #FFFFFF !important;
}

/* Subtítulos padronizados */
.sobre-hero-subtitle,
.tech-hero-subtitle,
.page-hero-subtitle {
    font-size: 1.25rem !important;
    color: var(--color-neutral-300) !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8 !important;
}

/* Espaçamento proporcional mobile */
@media (max-width: 768px) {
    .page-hero,
    .page-hero-enhanced,
    .sobre-hero,
    .tech-hero {
        padding: 140px 0 80px !important;
    }
    .sobre-hero-title,
    .tech-hero-title,
    .page-hero-title { font-size: 2rem !important; }
    .sobre-hero-subtitle,
    .tech-hero-subtitle,
    .page-hero-subtitle { font-size: 1.05rem !important; }
}

/* ── 2. CTA sections: fundo azul escuro (remover teal) ── */
.cat-cta {
    background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-neutral-800) 100%) !important;
}

.cat-cta::before {
    background:
        radial-gradient(circle at 30% 50%, rgba(63, 192, 185, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(63, 192, 185, 0.06) 0%, transparent 50%) !important;
}

/* Botão primário na cat-cta: já funciona com btn-primary (teal) */
/* Botão glass na cat-cta: manter border branca */
.cat-cta .btn-glass {
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.85) !important;
}
.cat-cta .btn-glass:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #FFFFFF !important;
}

/* Trust items no cat-cta: cor compatível com fundo escuro */
.cat-cta-trust .trust-item {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ── 3. Botões: hover padronizado ── */
.btn-primary:hover,
.btn-shine:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(63, 192, 185, 0.45);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── 4. WhatsApp SVG nos botões: ícone correto ── */
/* Garante que o SVG dentro de .btn não fique maior que 20px */
.btn svg[viewBox="0 0 24 24"],
.btn svg[viewBox="0 0 32 32"] {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    flex-shrink: 0;
}

/* ===== MATERIAIS SECTION ===== */
.materiais-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.materiais-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
}

.materiais-content {
    display: flex;
    flex-direction: column;
}

.materiais-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-neutral-900);
    line-height: 1.15;
    margin-bottom: 24px;
}

.materiais-desc {
    font-size: 1rem;
    color: var(--color-neutral-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.materiais-desc:last-child {
    margin-bottom: 0;
}

.materiais-image-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.materiais-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    display: block;
}

.materiais-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mat-feature {
    background: #EEF2FF;
    border-radius: 16px;
    padding: 32px 28px;
}

.mat-feature h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 12px;
}

.mat-feature p {
    font-size: 0.95rem;
    color: var(--color-neutral-600);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1024px) {
    .materiais-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .materiais-section { padding: 60px 0; }
    .materiais-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    .materiais-image-col { justify-content: center; }
    .materiais-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =======================================================
   GLOBAL FIXES — v02
   ======================================================= */

/* 1. Section-badge on light backgrounds: ensure dark readable text.
      Dark sections use .section-badge.light (white text) — not affected. */
.section-badge:not(.light) {
    color: var(--color-neutral-900) !important;
}

/* 2. Section-pill icons: hide globally (same pattern as section-badge) */
.section-pill i,
.section-pill svg {
    display: none !important;
}

/* 3. Sol-benefit-tag: dark text for readability on light backgrounds */
.sol-benefit-tag {
    color: var(--color-neutral-900) !important;
}

/* 4. Mat-feature blocks: use neutral bg instead of light-blue */
.mat-feature {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
}


/* ============================================================
   SESSÃO DE AJUSTES V03 — VIDEO SHOWCASE, MAT-FEATURE ICONS,
   BTN-PRIMARY CONTRAST, TIMELINE FIX
   ============================================================ */

/* ── Mat-feature: ícone no topo de cada bloco ── */
.mat-feature {
    text-align: center !important;
    padding: 36px 28px !important;
}
.mat-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(63, 192, 185, 0.12);
    color: var(--color-primary-500);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease, color 0.3s ease;
}
.mat-feature-icon i { width: 28px; height: 28px; }
.mat-feature:hover .mat-feature-icon {
    background: var(--color-primary-500);
    color: #fff;
}
.mat-feature h3 {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.mat-feature p {
    text-align: center;
    font-size: 0.93rem;
}

/* ── SF SHOWCASE: novo layout para vídeo vertical ── */
.sf-action-section {
    background: var(--color-neutral-900) !important;
    padding: 100px 0 !important;
}
.sf-action-section .section-badge span { color: var(--color-primary-400) !important; }
.sf-action-section .section-title { color: #FFFFFF !important; }
.sf-action-section .section-description { color: #94A3B8 !important; }
.sf-action-section .section-description strong { color: var(--color-primary-400) !important; }

.sf-showcase-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin: 0 0 56px;
}
.sf-showcase-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sf-showcase-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.sf-showcase-block:hover {
    background: rgba(63, 192, 185, 0.07);
    border-color: rgba(63, 192, 185, 0.3);
}
.sf-showcase-block-icon {
    width: 48px;
    height: 48px;
    background: rgba(63, 192, 185, 0.12);
    color: var(--color-primary-400);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sf-showcase-block-icon i { width: 24px; height: 24px; }
.sf-showcase-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}
.sf-showcase-block p {
    font-size: 0.875rem;
    color: #94A3B8;
    margin: 0;
    line-height: 1.6;
}
/* Right column: align blocks to the same center */
.sf-showcase-col--right .sf-showcase-block {
    text-align: left;
}

/* Vertical video center column */
.sf-showcase-video-wrap {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.sf-showcase-video-inner {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 2px rgba(63,192,185,0.25);
}
.sf-showcase-video-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sf-showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 19, 43, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.sf-showcase-overlay:hover { background: rgba(11, 19, 43, 0.3); }
.sf-play-btn-lg {
    width: 72px;
    height: 72px;
    background: var(--color-primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neutral-900);
    box-shadow: 0 8px 32px rgba(63,192,185,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sf-showcase-overlay:hover .sf-play-btn-lg {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(63,192,185,0.65);
}
/* Stats row under video — agora fora do video-wrap, fixado na coluna central do grid */
.sf-showcase-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    grid-column: 2; /* coluna do vídeo no desktop */
    margin-top: -8px;
}
.sf-showcase-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 14px 20px;
    min-width: 100px;
}
.sf-showcase-stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-400);
    font-family: var(--font-display);
    line-height: 1;
}
.sf-showcase-stat small {
    display: block;
    font-size: 0.75rem;
    color: #94A3B8;
    margin-top: 4px;
    line-height: 1.3;
}
/* Dark section CTA button override */
.sf-action-section .btn-primary {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-400) 100%) !important;
    color: var(--color-neutral-900) !important;
}

/* Responsive: tablet */
@media (max-width: 1024px) {
    .sf-showcase-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sf-showcase-video-wrap {
        width: 260px;
        margin: 0 auto;
        order: -1; /* video first */
    }
    .sf-showcase-col--left,
    .sf-showcase-col--right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 640px) {
    .sf-showcase-video-wrap { width: 220px; }
    .sf-showcase-col--left,
    .sf-showcase-col--right {
        grid-template-columns: 1fr;
    }
}

/* ── Hero subtitle: no overflow, always 2 lines max ── */
.hero-subtitle {
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.65;
}

/* =========================================
   TIMELINE PREMIUM — ANIMATED LINE v2
   ========================================= */

/* step-circle needs position:relative for ::before/::after rings */
.step-circle { position: relative; }

/* ─── Initial hidden states (applied when JS adds .tl-js class) ─── */
.timeline-premium.tl-js .timeline-premium-line {
    transform: scaleY(0);
    transform-origin: top center;
    opacity: 0.6;
}
.timeline-premium.tl-js .step-circle {
    opacity: 0;
    transform: scale(0.5);
}
.timeline-premium.tl-js .step-card:not(.step-card-empty) {
    opacity: 0;
    transform: translateY(28px);
}

/* ─── Ring flash when a step activates ─── */
.step-circle.tl-step-active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2.5px solid var(--color-primary-500);
    opacity: 0;
    pointer-events: none;
    animation: tl-ring-flash 0.9s ease-out forwards;
}
.step-circle.tl-step-active.green::after,
.step-circle.tl-step-active.tl-step-final::after {
    border-color: var(--color-success-500);
}

@keyframes tl-ring-flash {
    0%   { transform: scale(1);   opacity: 0.85; }
    100% { transform: scale(2.2); opacity: 0;    }
}

/* ─── Step 4 celebration — bounce + infinite pulse rings ─── */
.step-circle.tl-step-final {
    animation: tl-bounce-final 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes tl-bounce-final {
    0%   { transform: scale(1);    }
    45%  { transform: scale(1.30); }
    70%  { transform: scale(0.93); }
    100% { transform: scale(1.12); }
}

.step-circle.tl-step-final::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid rgba(16, 185, 129, 0.55);
    pointer-events: none;
    animation: tl-pulse-ring 2s ease-out infinite;
}
.step-circle.tl-step-final::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.28);
    pointer-events: none;
    animation: tl-pulse-ring 2s ease-out 0.55s infinite;
    /* override the ring-flash animation for final step */
    opacity: 0;
}

@keyframes tl-pulse-ring {
    0%   { transform: scale(1);   opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ─── Mobile: show line on left side ─── */
@media (max-width: 768px) {
    .timeline-premium-line {
        display: block !important;
        left: 28px !important;
        /* translateX(-50%) reset: not needed with absolute left px */
    }
}

/* ── Soluções: comparison table same as Home ── */
.sol-comparison-section .comp-table-wrap {
    max-width: 720px;
    margin: 0 auto;
}



/* ============================================================
   AJUSTES V03-B — GLOBAL FIXES
   ============================================================ */

/* ── Remover ícones de TODOS os section-badge e section-pill ── */
.section-badge i,
.section-badge svg,
.section-badge [data-lucide],
.section-pill i,
.section-pill svg,
.section-pill [data-lucide],
.sobre-hero-badge i,
.cat-hero-badge i,
.cat-hero-badge svg,
.tech-hero-badge i { display: none !important; }

/* ── btn-primary: forçar texto/ícone escuro em TODOS os contextos ── */
/* Sobrescreve style.css que tinha color+stroke white !important */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary span,
.btn-primary * {
    color: #0B132B !important;
}
/* Override stroke branco de style.css — para Lucide (stroke-based) E WhatsApp (fill-based) */
/* NÃO usar fill:none aqui — WhatsApp SVG tem fill="currentColor" e ficaria invisível */
.btn-primary svg path,
.btn-primary svg circle,
.btn-primary svg line,
.btn-primary svg polyline,
.btn-primary svg rect {
    color: #0B132B !important;
    stroke: #0B132B !important;
    /* fill: não definido → WhatsApp herda fill="currentColor"=#0B132B ✓ */
    /*                     → Lucide herda fill="none" do SVG pai        ✓ */
}
/* WhatsApp SVG: fill="currentColor" no elemento pai — garantir preenchimento escuro */
.btn-primary svg[fill="currentColor"] {
    fill: #0B132B !important;
}
/* Lucide SVG: fill="none" no elemento pai — manter sem preenchimento */
.btn-primary svg[fill="none"] {
    fill: none !important;
    stroke: #0B132B !important;
}
/* shine overlay compatível com texto escuro */
.btn-primary.btn-shine::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent) !important;
}

/* ── Blog listing: ocultar link/tag "blog" nos posts ── */
.post-tag-blog,
.post-category-link,
a.tag-blog,
.entry-meta .cat-links a[href*="/blog"],
.post-meta a[href*="category/blog"],
.tag-link-blog,
.terms-tags a[href*="/blog"] { display: none !important; }

