﻿/* Global Design System - Soares Servicos */
:root {
    --primary: #0B2E6B;
    --accent: #d9c006;
    --light: #F4F6F8;
    --white: #FFFFFF;
    --surface: #FAFBFC;
    --navy-deep: #071D47;
    --navy-mid: #0F3A80;
    --gold-light: #E5B95D;
    --steel: #2A3F5F;
    --slate: #4A5E7A;
    --muted: #6B7F9A;
    --text: #1A2B45;
    --radius-card: 18px;
    --radius-image: 18px;
    --shadow-soft: 0 6px 18px rgba(11, 46, 107, 0.08);
    --shadow-hover: 0 10px 24px rgba(11, 46, 107, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

p,
li {
    line-height: 1.7;
}

a,
button,
img,
.pillar-card,
.highlight-box,
.stat-box,
.conf-seal,
.miner-item,
.miner-quote,
.contact-form,
.construction-box,
.step,
.cta-contact-item {
    transition: all 0.3s ease;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 6%;
    background: rgba(11, 46, 107, 0.86) !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 146, 42, 0.25);
    box-shadow: 0 4px 14px rgba(7, 29, 71, 0.1);
}

.nav-logo img {
    position: relative;
    z-index: 1;
    height: 45px;
    width: auto;
}

.nav-links {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2.1rem;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn-primary,
.btn-dark,
.nav-cta,
button.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px !important;
    clip-path: none !important;
    padding: 0.95rem 2.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none !important;
}

.btn-primary,
.btn-dark,
.nav-cta {
    background: var(--accent) !important;
    color: var(--navy-deep) !important;
}

.btn-primary:hover,
.btn-dark:hover,
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: none !important;
}

.btn-primary:active,
.btn-dark:active,
.nav-cta:active {
    transform: translateY(0);
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
    padding: 130px 6% 90px !important;
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(201, 146, 42, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 146, 42, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 28s linear infinite;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 60px 60px;
    }
}

.hero-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    pointer-events: none;
    background: none;
}

.hero-ghost {
    position: absolute;
    right: 2%;
    bottom: 5%;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: min(15vw, 12rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    letter-spacing: 0.045em;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 940px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.eyebrow::before {
    content: '';
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.hero h1,
.intro-left h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.01em !important;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.intro-left h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem) !important;
}

.hero h1 em,
.intro-left h1 em {
    display: block;
    font-style: normal;
    color: var(--accent);
}

.hero-sub,
.intro-left p {
    max-width: 680px;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

/* Sections */
section {
    position: relative;
    padding: clamp(6.4rem, 10vw, 8.6rem) 6%;
}

.intro-banner,
.conformidade,
.mineracao,
.como,
.cta-final,
.cta-section,
.construction-container {
    padding-top: clamp(6.4rem, 10vw, 8.5rem) !important;
    padding-bottom: clamp(6rem, 9vw, 8rem) !important;
}

.section-tag,
.sec-tag {
    display: block;
    margin-bottom: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.section-title,
.cta-final h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    margin-bottom: 2.8rem;
    color: var(--primary);
}

.cta-final::before,
.cta-section::before {
    background: none !important;
}

/* Results + Map Sections */
.resultados-operacionais {
    background: var(--light);
}

.resultados-lead,
.mapa-lead {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    color: var(--slate);
    font-size: 1.08rem;
    line-height: 1.75;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
    margin-top: 2.3rem;
}

.resultado-card {
    background: var(--white);
    border: 1px solid rgba(11, 46, 107, 0.1);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.resultado-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.06;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.resultado-card p {
    font-size: 0.97rem;
    line-height: 1.66;
    color: var(--slate);
}

.resultado-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mapa-operacoes {
    background: var(--white);
}

#mapaOperacoes {
    height: 500px;
    margin-top: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(11, 46, 107, 0.12);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
}

.leaflet-popup-content {
    font-family: 'Barlow', sans-serif;
    line-height: 1.45;
    color: var(--text);
}

.leaflet-popup-content strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.leaflet-control-attribution {
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
}

/* Card Surfaces */
.pillar-card,
.highlight-box,
.stat-box,
.conf-seal,
.miner-item,
.miner-quote,
.contact-form,
.construction-box,
.step,
.cta-contact-item {
    border-radius: var(--radius-card) !important;
    box-shadow: var(--shadow-soft);
}

.pillar-card,
.miner-item,
.contact-form,
.construction-box,
.step,
.cta-contact-item {
    background: var(--white) !important;
    border: 1px solid rgba(11, 46, 107, 0.08);
}

.highlight-box {
    border-left: none !important;
    border: 1px solid rgba(201, 146, 42, 0.3);
}

.intro-banner .stat-box,
.conformidade .conf-seal,
.miner-visual .miner-quote,
.cta-final .cta-contact-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: none;
}

.pillar-card:hover,
.highlight-box:hover,
.stat-box:hover,
.conf-seal:hover,
.miner-item:hover,
.miner-quote:hover,
.contact-form:hover,
.construction-box:hover,
.step:hover,
.cta-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.pillar-card,
.miner-item,
.contact-form,
.construction-box {
    padding: clamp(2rem, 3.2vw, 3rem) !important;
}

.step {
    padding: 2rem 1.5rem;
}

/* Secondary rounded UI */
.conf-check,
.step-num,
.form-group input,
.form-group textarea {
    border-radius: 999px !important;
    clip-path: none !important;
}

.form-group textarea {
    border-radius: 16px !important;
    padding: 1rem 1.1rem;
    line-height: 1.65;
}

.form-group input,
.form-group textarea {
    border: 1px solid rgba(11, 46, 107, 0.16) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(201, 146, 42, 0.12);
}

/* Gallery and media treatment */
img {
    max-width: 100%;
    height: auto;
}

[class*='gallery'] img,
[class*='galeria'] img,
[class*='portfolio'] img {
    border-radius: var(--radius-image);
    box-shadow: var(--shadow-soft);
}

[class*='gallery'] img:hover,
[class*='galeria'] img:hover,
[class*='portfolio'] img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: 84vh;
        padding-top: 140px !important;
    }

    .section-title,
    .cta-final h2 {
        margin-bottom: 2rem;
    }

    .steps {
        gap: 1.25rem;
    }
}

@media (max-width: 680px) {

    section,
    .intro-banner,
    .conformidade,
    .mineracao,
    .como,
    .cta-final,
    .cta-section,
    .construction-container {
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }

    .btn-primary,
    .btn-dark,
    .nav-cta {
        width: 100%;
        max-width: 420px;
    }

    .hero h1,
    .intro-left h1 {
        font-size: clamp(2.5rem, 11vw, 3.3rem) !important;
    }

    #mapaOperacoes {
        height: 420px;
    }
}

/* Utility Classes to replace inline styles */
.text-accent {
    color: var(--accent) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-muted {
    color: var(--muted) !important;
}

.text-gold-light {
    color: var(--gold-light) !important;
}

.text-light-65 {
    color: rgba(255, 255, 255, 0.65) !important;
}

.text-light-70 {
    color: rgba(255, 255, 255, 0.70) !important;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.50) !important;
}

.text-light-30 {
    color: rgba(255, 255, 255, 0.30) !important;
}

.bg-navy {
    background: var(--navy-deep) !important;
}

.bg-white {
    background: var(--white) !important;
}

.bg-accent {
    background: var(--accent) !important;
}

.border-light-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.w-full {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

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

.font-condensed {
    font-family: 'Barlow Condensed', sans-serif !important;
}

.ls-1 {
    letter-spacing: 0.1em !important;
}

.opacity-7 {
    opacity: 0.7 !important;
}

.opacity-4 {
    opacity: 0.4 !important;
}

.max-w-700 {
    max-width: 700px !important;
}

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

.flex-gap-2 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.bg-navy-mid {
    background: var(--navy-mid) !important;
}

/* Enhanced Pillars Layout for Strategic Refactor */
.pillars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.pillar-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-top: 5px solid var(--accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-10px);
}

.pillar-item.featured {
    border-top-width: 8px;
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 20px 45px rgba(11, 46, 107, 0.12);
}

.pillar-item.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.pillar-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.pillar-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
}

.pillar-item ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.pillar-item ul li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--slate);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.pillar-item ul li::before {
    content: '';
    color: var(--accent);
    font-weight: bold;
}

.mvv-premium {
    background: var(--navy-deep);
    color: var(--white);
    padding: 6rem 6%;
    margin: 5rem 0 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

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

.mvv-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(201, 146, 42, 0.3);
    padding-bottom: 1rem;
}

.mvv-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

.mvv-card ul li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mvv-card ul li strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.2rem;
}

@media (max-width: 1024px) {

    .pillars-container,
    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .pillar-item.featured {
        transform: none;
    }

    .mvv-premium {
        margin: 5rem 0 0;
        padding: 4rem 6%;
    }
}

/* --- COMO FUNCIONA (PROCESSO) ------------------- */
.como {
    padding: 100px 6%;
    background: var(--white);
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.step {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(11, 46, 107, 0.05);
    border-radius: var(--radius-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.step-num {
    width: 65px;
    height: 65px;
    background: var(--accent);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy-deep);
    margin-bottom: 0.8rem;
}

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

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

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

/* Stats Bar - Quantitative Proof */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--navy-deep);
    padding: 3rem 6%;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.stat-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* Risco Zero Section */
.risco-zero {
    padding: 100px 6%;
    background: var(--light);
}

.risco-zero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.risco-content .lead {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.risco-content p {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary);
}

.check-list i {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.risco-visual {
    display: flex;
    justify-content: center;
}

.badge-premium {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--accent);
    box-shadow: 0 20px 40px rgba(11, 46, 107, 0.1);
    text-align: center;
    position: relative;
    max-width: 300px;
    animation: float 6s ease-in-out infinite;
}

.badge-premium i {
    width: 60px;
    height: 60px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.badge-premium span {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.3;
}

.badge-premium span strong {
    font-size: 1.5rem;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 900px) {
    .risco-zero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .risco-visual {
        order: -1;
    }
}

/* --- POR QUE ESCOLHER A SOARES (Prova Social) --- */
.por-que {
    background: var(--light);
    padding: clamp(6rem, 10vw, 8.5rem) 6%;
}

.pq-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pq-sub {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 680px;
    line-height: 1.75;
    margin-bottom: 3.5rem;
}

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

.pq-card {
    background: var(--white);
    border: 1px solid rgba(11, 46, 107, 0.08);
    border-top: 4px solid var(--accent);
    padding: 2.4rem 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pq-icon {
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.pq-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy-deep);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.pq-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

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

/* ============================================================
   UTILITY CLASSES — replacing all remaining inline styles
   ============================================================ */

/* --- Footer layout ---------------------------------------- */
.footer-main {
    padding: 4rem 6% 2rem;
    color: var(--white);
}

.footer-top {
    padding-bottom: 2rem;
}

.footer-copyright {
    font-size: 0.75rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- em-construcao footer (plain bg) ----------------------- */
.footer-construction {
    padding: 4rem 6% 2rem;
    background: var(--navy-deep);
    color: var(--white);
}

.footer-construction-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.footer-brand-title {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.footer-links-row {
    display: flex;
    gap: 2rem;
}

.footer-copy {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* --- Hero height variants ---------------------------------- */
.hero-sm {
    min-height: 40vh !important;
    padding-top: 180px !important;
}

.hero-md {
    min-height: 50vh !important;
    padding-top: 180px !important;
}

/* --- Transition delay helpers ------------------------------ */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* --- Contact / link color helpers -------------------------- */
.link-primary {
    color: var(--primary);
    text-decoration: none;
}

.link-primary:hover {
    text-decoration: underline;
}

/* --- Contact page — urgency box ---------------------------- */
.urgency-box {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(201, 146, 42, 0.1);
    border-left: 4px solid var(--accent);
}

.urgency-box p {
    font-weight: 600;
    color: var(--navy-deep);
}

/* --- Contact form delay / title ---------------------------- */
.contact-form-title {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* --- Contact form submit button override ------------------- */
.btn-block {
    width: 100%;
    border: none;
}

/* --- Form legal note --------------------------------------- */
.form-note {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 1rem;
    text-align: center;
}

/* --- CTA paragraph size helper ----------------------------- */
.cta-lead {
    font-size: 1.2rem;
}

/* --- Small location/financial meta text -------------------- */
.meta-sm {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: var(--slate);
}

/* --- conformidade section para text override --------------- */
.conf-body {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-size: 1rem;
}

/* --- gold-div centered / with auto margins ----------------- */
.gold-div-center {
    margin: 1.5rem auto;
    opacity: 0.4;
    width: 40px;
}

/* --- por-que section tag accent ---------------------------- */
.sec-tag-accent {
    color: var(--accent);
}

/* --- por-que h2 em highlight ------------------------------- */
.pq-em {
    color: var(--accent);
    font-style: normal;
}

/* --- EAD platform button ----------------------------------- */
.btn-secondary-text {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.icon-inline {
    width: 16px;
    vertical-align: middle;
}

/* --- Pillar step-num ghost number -------------------------- */
.pillar-ghost-num {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    opacity: 0.05;
    font-weight: 900;
}

/* --- Pillar sub-heading accent ----------------------------- */
.pillar-subtitle {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* --- CTA section em highlight ------------------------------ */
.cta-em-accent {
    color: var(--accent);
    font-style: normal;
}

/* --- servicos footer small text (uses text-light-50) ------- */
.footer-para-sm {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Text weight / style helpers --------------------------- */
.font-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}