@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;600;700&display=swap');

:root {
    /* Colors - SP Perícias High-Impact (Restored) */
    --primary: #f97316;        /* Orange for Brand CTAs/Impact sections */
    --brand-orange: #f97316;   
    --bg-dark: #050a1a;        /* Deepest Navy */
    --bg-card: rgba(13, 22, 38, 0.85); 
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Spacing */
    --section-padding: 100px 5%;
    --container-max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-primary { color: var(--primary); }
.text-display { font-family: 'Montserrat', sans-serif; }
.w-100 { width: 100%; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-glow {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-glow::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Navigation */
nav {
    height: 90px;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Fix for Logo with White Box - Rectangular Badge Style */
.logo-badge {
    background: #fff;
    padding: 8px 15px;
    border: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
}

.logo-badge img {
    height: 38px !important;
    width: auto;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: flex-start;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav-contact {
    display: flex;
    justify-content: flex-end;
}

.nav-links a:not(.btn) {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    padding: 140px 0 60px;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 4.2vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-hl {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316; /* High Impact RED */
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.hero p:not(.hero-hl) {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.badge i { color: var(--primary); }

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.auth-seals {
    display: flex; 
    gap: 30px; 
    align-items: center;
}

[class*="seals"] img {
    height: 55px;
    transition: 0.3s;
    filter: none !important;
    opacity: 1 !important;
}

[class*="seals"] img:hover {
    transform: scale(1.05);
}

/* Hero Visual Column */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Hero Visual - Museum Stacking Refined */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    margin-top: 40px;
}

.hero-visual img {
    position: absolute;
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
    transition: 0.5s ease;
}

.hero-visual img:first-child {
    top: 0;
    left: 0;
    z-index: 10;
}

.hero-image-wrapper img:last-of-type {
    top: 140px; /* Increased separation */
    left: 120px; /* Increased separation */
    z-index: 20;
    border-color: rgba(249, 115, 22, 0.2);
}

.hero-image-wrapper img:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 30;
    border-color: var(--primary);
}

.image-border {
    display: none;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-badges, .hero-btns, .auth-seals {
        justify-content: center;
    }

    .hero-image-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-wrapper img {
        height: 300px !important;
    }
}

/* Lead Capture Form */
.lead-capture {
    padding-top: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.lead-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.lead-form .form-group:last-of-type {
    grid-column: span 1;
}

.lead-form input, .lead-form select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

.lead-form button {
    grid-column: span 1;
}

.form-footer {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
    font-weight: 800;
}

/* Pain Cards - Impactful Red Style */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    padding: 45px;
    background: rgba(255, 68, 68, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 68, 68, 0.1);
    border-top: 4px solid #f97316; 
    transition: 0.3s;
    border-radius: 8px;
}

.problem-card i {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 25px;
    display: block;
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #fff;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Glass Core Restored */
.glass-panel {
    background: rgba(13, 22, 38, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 12px;
    transition: 0.3s;
}

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

/* Norms / Tech Resp */
.norms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.validity-list {
    margin-top: 1.5rem;
}

.validity-item {
    padding: 12px 20px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 4px;
    margin-bottom: 12px;
    border-left: 2px solid var(--primary);
    font-size: 0.95rem;
}

/* Assets Grid */
.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.asset-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255,255,255,0.05);
}

.asset-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.asset-box:hover img {
    transform: scale(1.1);
}

.asset-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Clients Section */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 30px 0;
}

.client-item {
    flex: 0 0 140px; /* FIXED WIDTH ensures they stay side-by-side */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    border-radius: 6px;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.client-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.client-item img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}

/* FAQ */
.faq-item {
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: 0.3s;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.authority-specialist {
    padding: 120px 0;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-color);
}

.authority-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.authority-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    width: 350px;
    max-width: 100%;
    height: 400px;
    margin: 0 auto;
    border: 1px solid var(--glass-border);
}

.expert-img-full {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    filter: brightness(1.1) contrast(1.05);
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.expert-presence:hover .expert-img-full {
    transform: scale(1.05);
}

/* Floating Institutional Proof Seals */
.expert-seals-float {
    position: absolute;
    top: 20px;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.floating-seal {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    transition: 0.3s;
}

.floating-seal:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--primary));
}

.box-tagline-gold {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(13, 22, 38, 0.92);
    backdrop-filter: blur(12px);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    z-index: 15;
}

.expert-name {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.expert-cargo {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.badge-exp {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.authority-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.authority-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.authority-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.feat-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.feat-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.auth-seals {
    display: flex; 
    gap: 30px; 
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: fit-content;
    margin: 35px 0;
}

.auth-seals img {
    height: 60px;
    width: auto;
    transition: 0.3s;
    filter: none !important;
    opacity: 1 !important;
}

.auth-seals img:hover {
    transform: scale(1.1) translateY(-2px);
}

/* Footer (Original) */
footer {
    padding: 80px 0 40px;
    background-color: var(--bg-dark);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* Responsive Optimization */
@media (max-width: 992px) {
    .lead-form {
        grid-template-columns: 1fr 1fr;
    }
    .norms-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .authority-info h2 {
        font-size: 2.2rem;
    }
    .authority-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 5%;
    }
    
    .nav-links { display: none; }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-content { margin: 0 auto; }
    
    .hero-badges, .hero-btns {
        justify-content: center;
    }
    
    .lead-form {
        grid-template-columns: 1fr;
    }
    
    .lead-form-container {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .authority-image {
        width: 280px;
        height: 320px;
    }
    .box-tagline-gold {
        padding: 10px 15px;
        bottom: 15px;
    }
    .expert-name {
        font-size: 1.15rem;
    }
    .expert-cargo {
        font-size: 0.8rem;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Keywords Hub */
.keywords-hub {
    overflow: hidden;
}

.keyword-pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: 0.3s;
    cursor: default;
    white-space: nowrap;
}

.keyword-pill:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--primary);
    color: var(--text-main);
}

/* Solution Grid Layout (Conversion focused) */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.icon-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-header i {
    color: var(--primary);
}

.solution-card h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    color: var(--text-main);
}

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

@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

/* Strategic Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.case-card.highlight {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.05), rgba(5, 5, 5, 0.5));
}

.case-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.case-header i {
    color: var(--primary);
    font-size: 1.5rem;
}

.case-header h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 700;
}

.case-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-step {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-step .label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    width: fit-content;
}

.label.error { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.label.info { background: rgba(33, 150, 243, 0.15); color: #448aff; }
.label.success { background: rgba(76, 175, 80, 0.15); color: #69f0ae; }

.case-step p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}


/* --- B2B CORPORATE NEW CLASSES --- */
.b2b-prob, .b2b-sol, .b2b-ben {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.5;
}
.b2b-prob strong { color: #fb923c; text-decoration: underline; text-decoration-color: rgba(255,82,82,0.3); }
.b2b-sol strong { color: #448aff; }
.b2b-ben strong { color: #69f0ae; }

/* Process Timeline B2B */
.timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding-left: 10px;
}
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 34px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(249, 115, 22, 0.3);
}
.timeline-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0D1626;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}
.step-content {
    background: #0D1626;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    flex-grow: 1;
    transition: 0.3s;
}
.step-content:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}
.step-content h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: white;
}
.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Differentiation Grid */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.diff-card {
    background: var(--bg-dark);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.diff-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}
.diff-card i {
    margin-bottom: 25px;
    color: white; /* to stand out against standard text-primary if needed */
}
.diff-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
    color: white;
}
.diff-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 34px;
    }
    .timeline-step {
        flex-direction: column;
        gap: 15px;
    }
    .step-icon {
        margin-left: 9px;
    }
    .step-content {
        margin-left: 0;
    }
}

/* --- MASTER B2B (Phase 2) GLASSMORPHISM & UI --- */
.glass-nav {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.glass-card {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e0e0e0 !important;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4), 0 0 40px rgba(249, 115, 22, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.glass-frame {
    position: relative;
    border-radius: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.image-gradient-overlay {
    position: absolute;
    inset: 8px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, transparent 50%, rgba(5,10,26,0.8) 100%);
    pointer-events: none;
}

.glow-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.premium-image-box {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}
.image-inner {
    border-radius: 12px;
    overflow: hidden;
}
.image-inner img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: 0.5s;
}
.premium-image-box:hover .image-inner img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.box-tagline {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.glow-seal {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.insight-card {
    display: block;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}
.insight-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary) !important;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.case-card {
    padding: 40px;
    border-radius: 12px;
    position: relative;
}
.case-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.case-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #2196f3;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}
.premium-badge { background: var(--primary); }
.case-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border-left: 3px solid #2196f3;
}
.highlighted-case .case-stat { border-left-color: var(--primary); }
.stat-number { font-size: 2.5rem; font-weight: bold; line-height: 1; color: white;}
.stat-label { font-size: 0.95rem; color: #ccc; line-height: 1.2; text-transform: uppercase; }

@media (max-width: 768px) {
    .lead-grid { grid-template-columns: 1fr !important; }
    .glow-sphere { display: none; }
}

/* --- WPO & Otimização B2B - Classes Utilitárias (Substituto CSS Inline) --- */
html { scroll-behavior: smooth; }

.nav-cta-btn { padding: 10px 22px; font-size: 0.85rem; }
.hero-subtext { font-size: 1.15rem; color: #b3c0d1; margin-bottom: 2.2rem; line-height: 1.7; }
.icon-margin-right { margin-right: 10px; }
.section-bg-card { background: var(--bg-card); }
.section-bg-dark { background: var(--bg-dark); position: relative; overflow: hidden; }

/* Paddings Essenciais B2B */
.pad-top-large { padding-top: 100px; }
.pad-block-sm { padding: 50px 0; }
.pad-block-base { padding: 60px 0; }
.pad-block-md { padding: 60px 0 30px; }
.pad-block-lg { padding: 100px 0; }

.section-subtitle { text-align: center; max-width: 850px; margin: 0 auto 4rem; color: var(--text-muted); font-size: 1.15rem; }
.sphere-pos-1 { top: 20%; left: 10%; }
.step-animate { animation: fadeStepIn 0.8s ease-out forwards; }

.border-primary-active { border-color: var(--primary) !important; }
.border-top-subtle { border-top: 1px solid rgba(255,255,255,0.05); }
.border-top-primary { border-top: 4px solid var(--primary); }

.auth-title { font-size: 2.2rem; margin-bottom: 18px; line-height: 1.2; }
.auth-desc { color: var(--text-muted); font-size: 1.15rem; line-height: 1.7; margin-bottom: 20px; }
.auth-list { margin-bottom: 30px; }
.flex-wrap { flex-wrap: wrap; }
.seal-img { height: 60px; }
.prim-text { color: var(--primary) !important; }

.margin-bot-base { margin-bottom: 20px; }
.lead-title { font-size: 2.2rem; margin-bottom: 20px; }
.lead-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 25px; }
.pad-xl { padding: 40px; }
.form-title { margin-bottom: 20px; font-size: 1.4rem; }
.btn-submit { padding: 15px; font-size: 1.05rem; width: 100%; }
.form-disclaimer { font-size: 0.75rem; color: #666; text-align: center; margin-top: 15px; }

/* Inputs do Form Corporativo */
.lead-form-box form .form-group { margin-bottom: 15px; }
.lead-form-box form label { color: #aaa; font-size: 0.85rem; display: block; margin-bottom: 5px; }
.lead-form-box form input { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 6px; }

.insight-card { position: relative; }
.insight-tag { color: var(--primary); font-size: 0.8rem; font-weight: bold; }
.insight-title { margin: 10px 0; color: #fff; font-size: 1.1rem; }
.insight-desc { font-size: 0.9rem; color: var(--text-muted); }
.stretched-link { opacity: 0; }
.stretched-link::after { content: ""; position: absolute; inset: 0; z-index: 1; cursor: pointer; }

.trusted-by-text { text-align: center; color: var(--text-muted); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 30px; font-size: 0.85rem; }
.flex-center { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
.fade-opacity { opacity: 0.6; }

.cta-bg { background: linear-gradient(135deg, #02050D 0%, #152238 100%); }
.cta-title { text-align: center; font-size: 2.2rem; margin-bottom: 1.5rem; letter-spacing: -1px; text-shadow: 0 5px 25px rgba(249, 115, 22, 0.4); }
.cta-desc { text-align: center; font-size: 1.25rem; color: #a4b2c1; margin-bottom: 3.5rem; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.btn-lg-padding { padding: 22px 55px; font-size: 1.2rem; border-radius: 8px; }

.keywords-bg { background: #02040A; }
.keywords-title { font-size: 0.85rem; color: #444; margin-bottom: 20px; text-transform: uppercase; }
.dark-mode { border: 1px solid #111; color: #444; background: transparent !important; }

.footer-bg { background-color: var(--primary-dark); }
.footer-logo { margin-bottom: 25px; display: flex; justify-content: center; }
.footer-logo img { height: 50px; opacity: 0.7; }
.footer-copy { color: #555; font-size: 0.95rem; }
.footer-loc { font-size: 0.85rem; color: #444; margin-top: 8px; }
.bw-footer-seals { margin-top: 30px; display: flex; justify-content: center; gap: 20px; filter: grayscale(100%) opacity(0.4); }
.bw-footer-seals img { height: 35px; }

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

/* --- REFINAMENTOS B2B AUTORIDADE --- */
.b2b-60-40 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .b2b-60-40 {
        grid-template-columns: 1fr;
    }
}

.transparent-seal {
    mix-blend-mode: screen;
    filter: invert(1) brightness(1.5);
    opacity: 0.85;
    transition: 0.3s;
}

.transparent-seal:hover {
    opacity: 1;
    filter: invert(1) brightness(2);
}

.expert-presence {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: linear-gradient(0deg, rgba(5,10,26,0.9) 0%, rgba(5,10,26,0) 40%);
    box-shadow: inset 0 -50px 50px -20px #050a1a;
}

.expert-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(10%) contrast(1.1);
}

.box-tagline-gold {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #111;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .nav-contact {
        display: none;
    }
    .nav-container {
        grid-template-columns: 1fr auto;
    }
}
