/* ================================================
   BLUM DIGITAL — PREMIUM ENTERPRISE STYLESHEET
   ================================================ */

/* ---------- DESIGN TOKENS ---------- */
/* ---------- CREATIVE DIFERENCIAIS + GLASSMORPHISM ---------- */
.creative-diferenciais {
    position: relative;
    background: #050a0a;
    padding: 140px 0;
    overflow: hidden;
    color: white;
}

#pixel-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.creative-diferenciais .container {
    position: relative;
    z-index: 2;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.bf-card-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.bf-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 139, 126, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bf-card-premium:hover {
    transform: translateY(-15px);
    border-color: rgba(27, 139, 126, 0.8);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(27, 139, 126, 0.2);
}

.bf-card-premium:hover::before {
    opacity: 1;
}

.bf-icon-main {
    width: 90px;
    height: 90px;
    background: rgba(27, 139, 126, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    border: 1px solid rgba(27, 139, 126, 0.2);
    position: relative;
    z-index: 2;
}

.bf-card-premium:hover .bf-icon-main {
    background: var(--primary);
    color: white;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 50px rgba(27, 139, 126, 0.6);
}

.bf-card-premium h3 {
    font-size: 1.7rem;
    font-weight: 850;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.5px;
}

.bf-card-premium p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.bf-number-floating {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    transition: all 0.7s ease;
}

.bf-card-premium:hover .bf-number-floating {
    color: rgba(27, 139, 126, 0.2);
    transform: scale(1.1) translateY(10px);
}

:root {
    --primary: #1B8B7E;
    /* Nova Marca - Verde Água Sofisticado */
    --primary-light: #4DBBB0;
    --primary-dark: #12635B;
    --secondary: #000000;
    /* Black / Sofisticado Absolute */
    --secondary-light: #111111;
    --accent-gold: #FFFFFF;
    /* Pure White for Clean Aesthetics */
    --accent-gold-hover: #E5E7EB;
    /* New Strategic Colors */
    --deep-teal: #003D4C;
    --emerald-green: #50C878;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #F1F5F9;
    --border-light: #E2E8F0;
    --border-dark: rgba(255, 255, 255, 0.1);

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 20px rgba(255, 255, 255, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --nav-h: 85px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ---------- PREMIUM GLOBAL ENTRANCE ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 5vw, 30px);
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section {
    padding: 100px 0;
}

.bg-white {
    background: var(--bg-white);
}

.bg-dark {
    background: var(--secondary);
    color: var(--text-light);
}

.bg-pattern {
    background-color: var(--secondary);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 20px;
}

.label-primary {
    background: rgba(17, 119, 101, 0.1);
    color: var(--primary);
}

.label-gold {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}



/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: clamp(13px, 3.5vw, 15px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    min-height: 54px;
    padding: 12px 32px;
    text-align: center;
    line-height: 1.3;
}

.btn-gold {
    background: var(--accent-gold);
    color: #000000;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-gold:hover {
    background: #fff;
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 10px 40px rgba(80, 200, 120, 0.4), 0 0 20px rgba(80, 200, 120, 0.2);
    /* Outer Glow Emerald */
}

.btn-outline {
    border: 2px solid var(--border-light);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-light {
    border: 2px solid var(--border-dark);
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 40px rgba(80, 200, 120, 0.4);
    border-color: var(--emerald-green);
    color: #fff;
}

/* ---------- PREMIUM GLOW EFFECT ---------- */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    box-shadow: 0 0 25px var(--emerald-green);
    transform: translateY(-3px);
    background: var(--emerald-green);
    color: #000;
}

.pricing-card.featured .btn-gold {
    background: var(--emerald-green);
    color: #000;
}

.pricing-card.featured .btn-gold:hover {
    box-shadow: 0 0 30px var(--emerald-green);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(0, 0, 0, 0.95);
    /* Pure Black Semi-transparent */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-strong);
}

.logo-main {
    height: 110px;
    /* Larger than the navbar for a floating effect */
    width: auto;
    max-width: none;
    display: block;
    filter: brightness(1.3) contrast(1.3);
    transition: all 0.3s var(--ease);
    position: relative;
    z-index: 1001;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    /* Matches navbar height exactly */
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger i {
    font-size: 24px;
    color: #fff;
}

.hero {
    position: relative;
    padding-top: calc(var(--nav-h) + 120px);
    padding-bottom: 140px;
    background-color: var(--secondary);
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-interactive {
    position: relative;
    overflow: hidden;
}

.hero-interactive #particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content,
.hero-interactive .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-text-gold {
    color: var(--accent-gold);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-trust {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Bolhas de Luz (Cinematográficas) no fundo do Hero */
.hero-glow-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(17, 119, 101, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 0%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(40px);
}

/* ---------- ESTATÍSTICAS / CREDIBILIDADE ---------- */
.stats {
    background: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-40px);
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
    border: none;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 900;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

/* ---------- SOBRE (NATURAL E ELEGANTE) ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: -30px;
    /* Compensa o box de stats */
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.about-img-box img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.ceo-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.1) brightness(1.05);
    /* Leve realce nas cores */
    transition: all 0.6s var(--ease);
}

.about-img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ---------- SERVIÇOS (LUXO) ---------- */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Estilo visual inspirado nas "Caixas Premium" com imagens */
.svc-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.svc-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
}

.svc-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(11, 17, 32, 0.6));
    pointer-events: none;
}

.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.svc-card:hover .svc-img {
    transform: scale(1.05);
}

.svc-icon-overlay {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 54px;
    height: 54px;
    background: var(--bg-white);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-strong);
    z-index: 2;
    transition: var(--ease) 0.3s;
}

.svc-card:hover .svc-icon-overlay {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-4px);
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.3s;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: transparent;
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-content {
    padding: 45px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.svc-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.svc-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* ---------- DIFERENCIAIS (BLOCO ESCURO "FOGUETE") ---------- */
.benefits-section {
    background-color: var(--secondary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.bf-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.bf-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.bf-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: -30px;
    text-align: left;
    transition: color 0.4s var(--ease);
}

.bf-card:hover .bf-number {
    color: rgba(255, 255, 255, 0.15);
}

.bf-card h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    z-index: 2;
    position: relative;
}

.bf-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    z-index: 2;
    position: relative;
}

/* ---------- METODOLOGIA ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.prc-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Glowing Animated Border */
.prc-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-md) + 2px);
    background: linear-gradient(120deg, var(--primary), var(--secondary), var(--primary-light), var(--accent-gold));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.prc-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.prc-card:hover::before {
    opacity: 1;
    animation: premiumBorderGlow 3s ease infinite;
}

@keyframes premiumBorderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.prc-step {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--bg-white);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(11, 17, 32, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Icon Elevation and Color Shift */
.prc-card:hover .prc-step {
    background: var(--primary);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(17, 119, 101, 0.4);
}

.prc-card h4 {
    transition: color 0.4s ease;
}

.prc-card:hover h4 {
    color: var(--primary);
}

.prc-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- CTA BANNER ---------- */
/* ---------- CTA BANNER PREMIUM ---------- */
.cta-banner {
    position: relative;
    background-color: var(--secondary);
    background-image: linear-gradient(rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.95)),
        url('https://images.unsplash.com/photo-1551434678-e076c223a692?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: 100px 60px;
    text-align: center;
    color: white;
    margin: 100px auto;
    max-width: 1100px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(17, 119, 101, 0.25) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #f87171;
    /* Soft Red */
    margin-bottom: 24px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.cta-urgency i {
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cta-banner h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 48px;
    font-size: 1.25rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.btn-xl {
    min-height: 68px;
    height: auto;
    padding: 15px clamp(20px, 5vw, 52px);
    font-size: clamp(14px, 4vw, 18px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.btn-xl:hover {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.02);
}

.cta-footer-text {
    margin-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- AREA (MAPA) ---------- */
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 4px;
}

.contact-item h4 {
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-muted);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

/* ---------- FAQ ---------- */
.faq-wrap {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.05rem;
}

.faq-a {
    padding: 0 30px 24px;
    color: var(--text-muted);
    display: none;
    font-size: 0.95rem;
}

.faq-item.open .faq-q {
    color: var(--primary);
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
    transition: 0.3s;
}

.faq-item.open .faq-a {
    display: block;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 clamp(40px, 12vw, 100px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer img.logo-main {
    height: 110px;
    width: auto;
    margin-bottom: 25px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer a {
    display: block;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* ---------- WHATSAPP BUTTON ---------- */
.wp-float {
    position: fixed;
    bottom: clamp(15px, 4vw, 30px);
    right: clamp(15px, 4vw, 30px);
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: wp-bounce 2s infinite;
}

@keyframes wp-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {

    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 70px;
    }

    .logo-main {
        height: 45px !important;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid var(--border-dark);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .services-grid,
    .benefits-grid,
    .process-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .footer img.logo-main {
        margin: 0 auto 25px;
    }
}

/* ---------- PRICING SECTION ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-strong);
    transform: scale(1.05);
    z-index: 2;
}

.badge-chosen {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 800;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--primary);
}

/* Portfolio Section Immersive Background */
.section-portfolio-masterpiece {
    background: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-portfolio-masterpiece::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(27, 139, 126, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(80, 200, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ---------- ULTIMATE PORTFOLIO EXPERIENCE (DARK LUXURY) ---------- */
.case-showcase-premium {
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    border-radius: 40px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 100px 200px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

@media (min-width: 1200px) {
    .case-showcase-premium {
        display: grid;
        grid-template-columns: 1.3fr 0.7fr;
        /* Precisely 65% / 35% split */
        gap: 60px;
        align-items: flex-start;
        padding: 100px 0;
    }
}

@media (max-width: 1200px) {
    .case-showcase-premium {
        grid-template-columns: 1fr;
        padding: 60px 0px;
        gap: 40px;
        text-align: center;
    }

    .case-visual-premium {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .case-info-luxury {
        padding: clamp(40px, 8vw, 60px) clamp(20px, 5vw, 40px) clamp(80px, 15vw, 100px);
        align-items: center;
        text-align: center;
    }

    .case-label-premium {
        justify-content: center;
    }

    .case-label-premium::after {
        display: none;
    }

    .case-label-premium::before {
        content: '';
        width: 30px;
        height: 1px;
        background: var(--primary);
    }

    .lux-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .ceo-verdict-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .ceo-verdict-box::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        border-radius: 4px 4px 0 0;
    }

    .case-scroll-trigger {
        justify-content: center;
    }
}

/* Elite Case Navigation - Visibility Restoration */
.case-scroll-trigger {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 150px;
}

.next-case-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.next-case-btn i {
    color: var(--primary-light);
    font-size: 13px;
}

.next-case-btn:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(27, 139, 126, 0.4);
}

.next-case-btn:hover i {
    color: #ffffff;
}

.case-showcase-premium {
    scroll-margin-top: 50px;
}

.case-visual-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

.glass-browser {
    width: 100%;
    background: #0d0d0d;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.glass-header {
    height: 45px;
    background: #1a1a1a;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.glass-content {
    position: relative;
    height: 550px;
    background: #111;
    overflow: hidden;
    padding: 0;
    /* Remove padding to let images breathe and fit */
}

/* Carousel Logic Handled in Absolute Section */

/* Luxury Content Side */
.case-info-luxury {
    padding: 80px 40px;
    /* More room for the metrics grid */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.05) 0%, transparent 100%);
    color: white;
}

.case-label-premium {
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.case-label-premium::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.case-title-luxury {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 0 50px rgba(80, 200, 120, 0.2);
}

.case-desc-luxury {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 60px;
}

/* Pillars of Success */
.luxury-steps {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.lux-step {
    display: flex;
    gap: 30px;
}

.lux-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.lux-step:hover .lux-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.lux-text h4 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 8px;
}

.lux-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* Strategic Verdict (Impact CEO) */
.ceo-verdict-box {
    margin-top: 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 25px;
    align-items: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.ceo-verdict-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    border-radius: 4px 0 0 4px;
}

.ceo-mini-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(80, 200, 120, 0.3);
    flex-shrink: 0;
}

.ceo-verdict-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.ceo-signature {
    display: block;
    margin-top: 15px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

/* Elite Metrics Area */
.case-metrics-elite {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
    justify-items: center;
    align-items: start;
}

@media (max-width: 1199px) {
    .case-metrics-elite {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .case-metrics-elite {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .case-metrics-elite {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.met-val {
    font-size: 2rem;
    /* Balanced size for 6 items */
    font-weight: 800;
    color: #50c878;
    line-height: 1;
}

.case-cta-elite {
    margin-top: 60px;
    /* Tighter connection with metrics above */
}

.met-lab {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-top: 10px;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 30;
}

.carousel-nav button {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-nav button:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.carousel-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
}

.carousel-dots span.active {
    background: #50c878;
    width: 35px;
    border-radius: 5px;
}

/* Custom Carousel High-Fidelity Fix */
.custom-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    /* Crucial Fix: forces images to appear */
}

.carousel-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 10px;
}

.carousel-slide.active img {
    opacity: 1;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* ---------- OFFERS ALERT & COUNTDOWN ---------- */
.offers-alert {
    background: linear-gradient(135deg, #000000 0%, var(--primary-dark) 100%);
    position: relative;
    padding: 120px 0 140px;
    /* Increased bottom spacing */
}

.offer-container {
    text-align: center;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.offer-countdown {
    background: rgba(255, 255, 255, 0.03);
    padding: clamp(20px, 5vw, 50px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.emergency-countdown-btn {
    display: inline-block;
    background: rgba(255, 0, 0, 0.05);
    padding: clamp(25px, 6vw, 40px) clamp(15px, 4vw, 60px);
    border-radius: var(--radius-lg);
    border: 3px solid #FF0000;
    text-decoration: none !important;
    transition: all 0.4s var(--ease);
    animation: emergency-pulse 2s infinite ease-in-out;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
}

@keyframes emergency-pulse {

    0%,
    100% {
        border-color: #FF0000;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
        transform: scale(1);
    }

    50% {
        border-color: #990000;
        box-shadow: 0 0 35px rgba(255, 0, 0, 0.6);
        transform: scale(1.02);
    }
}

.emergency-countdown-btn:hover {
    background: #FF0000;
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.9);
    border-color: #FFFFFF;
}

.emergency-countdown-btn:hover .cd-item span,
.emergency-countdown-btn:hover .cd-item p,
.emergency-countdown-btn:hover .cd-separator,
.emergency-countdown-btn:hover .btn-bottom-label {
    color: white !important;
    text-shadow: none;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.cd-item span {
    font-size: 5.5rem;
    font-weight: 900;
    color: #FF0000;
    line-height: 1;
    display: block;
}

.cd-item p {
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.cd-separator {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    color: #FF0000;
    margin-top: -30px;
}

.btn-bottom-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.pulse-glow-red {
    animation: pulse-glow-red 1.5s infinite ease-in-out;
}

@keyframes pulse-glow-red {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 0, 0, 0);
    }

    50% {
        text-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
    }
}

.btn-xl {
    padding: 20px clamp(20px, 5vw, 50px);
    font-size: clamp(14px, 4vw, 1.2rem);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ---------- ABOUT HERO ---------- */
.about-hero {
    position: relative;
    background: url('../IMG/Hero_Sobre.png') no-repeat center center / cover;
    padding: 180px 0 140px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* ---------- SERVIÇOS HERO ---------- */
.services-hero {
    position: relative;
    background: url('../IMG/hero_servicos_novo.jpg') no-repeat center center / cover;
    padding: 180px 0 140px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

/* ---------- PORTFOLIO HERO ---------- */
.portfolio-hero {
    position: relative;
    background: url('../IMG/Hero_Portfolio.png') no-repeat center center / cover;
    padding: 180px 0 140px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

/* ---------- BLOG HERO ---------- */
.blog-hero {
    position: relative;
    background: url('../IMG/Hero_Blog.png') no-repeat bottom center / cover;
    background-attachment: fixed;
    padding: calc(var(--nav-h) + 160px) 0 160px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.blog-hero h1,
.blog-hero p,
.blog-hero .label {
    position: relative;
    z-index: 5;
}

.blog-hero h1 {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.about-hero .container,
.services-hero .container,
.portfolio-hero .container,
.blog-hero .container {
    position: relative;
    z-index: 5;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title-max {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-top: 20px;
}

/* ---------- ABOUT SECTION REFINED ---------- */
.about-section-refined {
    padding: 120px 0;
}

.about-grid.container-align {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
    /* ALINHAMENTO VERTICAL CENTRAL */
}

.portrait-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.ceo-portrait {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.1) brightness(1.05);
    /* Leve realce nas cores */
    transition: transform 0.5s var(--ease);
}

.portrait-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
}

.pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: rgba(27, 139, 126, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.pillar-item:hover .pillar-icon {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.pillar-item h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--secondary);
}

.pillar-item p {
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .about-grid.container-align {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .pillars-grid {
        text-align: left;
    }
}

/* ========== PROPOSAL PAGES (FUNIL CONSULTIVO) ========== */
body.proposal-page {
    background-color: #050a0a !important;
    color: #ffffff;
}

body.proposal-page .section {
    background-color: transparent !important;
}

body.proposal-page .navbar {
    background: rgba(5, 10, 10, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.proposal-page .navbar .nav-link {
    filter: brightness(0) invert(1);
}

body.proposal-page .navbar .logo-main {
    /* Logo original preservada */
}

.proposal-hero {
    padding: 160px 0 80px;
    background: #050a0a radial-gradient(circle at 50% 50%, rgba(27, 139, 126, 0.15) 0%, transparent 70%);
}

.proposal-price-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    max-width: 550px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.old-price {
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    color: #ef4444;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.8;
}

.new-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: #50C878;
    text-shadow: 0 0 30px rgba(80, 200, 120, 0.5);
    display: block;
    line-height: 1;
    letter-spacing: -2px;
}

.onboarding-timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    padding-left: 60px;
}

.onboarding-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, #50C878 0%, transparent 100%);
    opacity: 0.3;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 5px;
    width: 9px;
    height: 9px;
    background: #50C878;
    border-radius: 50%;
    box-shadow: 0 0 20px #50C878;
}

.timeline-step h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.timeline-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 700px;
}

.timeline-step strong {
    color: #50C878;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.scope-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease);
}

.scope-card:hover {
    background: rgba(80, 200, 120, 0.03);
    border-color: #50C878;
    transform: translateY(-5px);
}

.btn-xl-platinum {
    padding: 28px 60px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: #50C878;
    color: #000;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(80, 200, 120, 0.3);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    text-transform: uppercase;
}

.btn-xl-platinum:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 70px rgba(80, 200, 120, 0.5);
    background: #fff;
}

.bauhaus-line {
    width: 100px;
    height: 4px;
    background: #50C878;
    margin: 20px auto;
}

@media (max-width: 768px) {
    .onboarding-timeline {
        padding-left: 40px;
    }

    .onboarding-timeline::before {
        left: 10px;
    }

    .timeline-step::before {
        left: -34px;
    }

    .new-price {
        font-size: 3rem;
    }

    .btn-xl-platinum {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}