/* ═══════════════════════════════════════════════════════
   ADEMARIO OLIVEIRA — CONSTRUÇÃO CIVIL
   style.css — Redesign Formal/Corporativo
═══════════════════════════════════════════════════════ */

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

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

:root {
    /* ── Azul (tecnologia / rigor) ── */
    --navy: #0B1E38;
    --navy-mid: #132D52;
    --blue: #1A4B8C;
    --blue-mid: #2563B0;
    --blue-accent: #3B82D4;
    --blue-pale: #E8F0FA;
    --blue-border: rgba(37, 99, 176, 0.18);

    /* ── Cinza (modernidade / neutralidade) ── */
    --gray-900: #1C2535;
    --gray-700: #3A4558;
    --gray-500: #64748B;
    --gray-300: #B0BBC9;
    --gray-100: #F0F3F7;
    --gray-50: #F7F9FB;
    --white: #FFFFFF;

    /* ── Laranja (ação / segurança) ── */
    --orange: #E05C0A;
    --orange-deep: #C04D06;
    --orange-light: #F97316;
    --orange-pale: #FEF1E8;

    /* ── Verde/Terroso (sustentabilidade / construção) ── */
    --earth: #4A7055;
    --earth-deep: #335A3E;
    --earth-light: #6A9978;
    --earth-pale: #E8F2EA;

    /* ── Texto ── */
    --ink: #0B1623;
    --text-body: #354150;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    /* ── Utilitário ── */
    --border: #DDE2EA;
    --shadow-sm: 0 1px 8px rgba(11, 30, 56, 0.07);
    --shadow-md: 0 4px 24px rgba(11, 30, 56, 0.10);
    --shadow-lg: 0 12px 48px rgba(11, 30, 56, 0.14);
    --shadow-xl: 0 24px 72px rgba(11, 30, 56, 0.18);

    /* ── Tipografia ── */
    --font-display: 'Epilogue', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-mid);
    border-radius: 4px;
}

::selection {
    background: var(--blue-pale);
    color: var(--blue);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ─── Tag ─── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue-mid);
    background: var(--blue-pale);
    border: 1px solid var(--blue-border);
    padding: 6px 14px;
    border-radius: 4px;
}

.tag::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--blue-mid);
    border-radius: 50%;
    flex-shrink: 0;
}

.tag.tag-orange {
    color: var(--orange);
    background: var(--orange-pale);
    border-color: rgba(224, 92, 10, 0.2);
}

.tag.tag-orange::before {
    background: var(--orange);
}

.tag.tag-earth {
    color: var(--earth);
    background: var(--earth-pale);
    border-color: rgba(74, 112, 85, 0.2);
}

.tag.tag-earth::before {
    background: var(--earth);
}

.hl {
    color: var(--orange);
}

.hl-blue {
    color: var(--blue-mid);
}

.hl-earth {
    color: var(--earth);
}

/* ─── Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all .4s ease;
}

#nav.scrolled {
    background: rgba(11, 30, 56, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(11, 30, 56, 0.25);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(224, 92, 10, 0.4);
}

.logo-icon i {
    color: #fff;
    font-size: 16px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .5px;
    padding-bottom: 3px;
    text-transform: uppercase;
    color: #fff;
}

.logo-name span {
    color: var(--orange-light);
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    padding-bottom: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width .3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--orange);
    color: #fff;
    padding: 11px 22px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(224, 92, 10, 0.35);
    transition: all .3s;
}

.btn-nav:hover {
    background: var(--orange-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(224, 92, 10, 0.45);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.35) saturate(0.65);
    transform: scale(1.03);
    transition: transform 14s ease;
}

#hero:hover .hero-bg-img {
    transform: scale(1.07);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(110deg, rgba(11, 30, 56, 0.88) 38%, rgba(26, 75, 140, 0.38) 100%),
        linear-gradient(to top, rgba(11, 30, 56, 0.65) 0%, transparent 45%);
}

.hero-rule {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 52%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.07), transparent);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange-light);
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 26px;
}

.hero-tag-pill::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--orange-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.5px;
    color: #fff;
    margin-bottom: 22px;
}

.hero-headline .accent {
    color: var(--orange-light);
}

.hero-headline .line-blue {
    color: var(--blue-accent);
    display: block;
}

.hero-rule-line {
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin-bottom: 22px;
    border-radius: 2px;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    line-height: 1.78;
    margin-bottom: 38px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.trust-text strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

/* Painel de métricas */
.hero-metrics {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: background .3s, border-color .3s;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.17);
}

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon.blue {
    background: rgba(59, 130, 212, 0.18);
}

.metric-icon.orange {
    background: rgba(224, 92, 10, 0.18);
}

.metric-icon.earth {
    background: rgba(74, 112, 85, 0.18);
}

.metric-icon.gray {
    background: rgba(100, 116, 139, 0.18);
}

.metric-icon i {
    font-size: 19px;
}

.metric-icon.blue i {
    color: var(--blue-accent);
}

.metric-icon.orange i {
    color: var(--orange-light);
}

.metric-icon.earth i {
    color: var(--earth-light);
}

.metric-icon.gray i {
    color: var(--gray-300);
}

.metric-val {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.metric-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
}

/* Botões */
.btn-primary {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--orange);
    color: #fff;
    padding: 15px 28px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(224, 92, 10, 0.35);
    transition: all .3s;
}

.btn-primary:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(224, 92, 10, 0.45);
}

.btn-secondary {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    padding: 14px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
}

.btn-secondary:hover {
    border-color: var(--orange-light);
    color: var(--orange-light);
    background: rgba(249, 115, 22, 0.07);
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-hint span {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
    animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: .7;
    }

    50% {
        transform: scaleY(.4);
        opacity: .25;
    }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
#stats {
    background: var(--navy);
    border-bottom: 3px solid var(--orange);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 34px 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: background .3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(59, 130, 212, 0.06);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(224, 92, 10, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border: 1px solid rgba(224, 92, 10, 0.2);
}

.stat-icon i {
    font-size: 15px;
    color: var(--orange-light);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.count-num {
    display: inline-block;
}

/* ══════════════════════════════════════════
   PROGRAMA
══════════════════════════════════════════ */
#programa {
    padding: 110px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

#programa::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(26, 75, 140, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.programa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.section-body {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.section-body strong {
    color: var(--text-body);
    font-weight: 600;
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 18px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all .3s;
}

.step-item:hover {
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.step-icon-box {
    width: 46px;
    height: 46px;
    background: var(--blue-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--blue-border);
    transition: background .3s, border-color .3s;
}

.step-item:hover .step-icon-box {
    background: var(--blue-mid);
    border-color: var(--blue-mid);
}

.step-icon-box i {
    font-size: 17px;
    color: var(--blue-mid);
    transition: color .3s;
}

.step-item:hover .step-icon-box i {
    color: #fff;
}

.step-info h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--ink);
    margin-bottom: 4px;
}

.step-info p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   SOLUÇÕES
══════════════════════════════════════════ */
#solucoes {
    padding: 110px 0;
    background: var(--white);
}

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

.section-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-header-desc {
    max-width: 300px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 16px;
}

.solution-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

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

.solution-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-border);
    transform: translateY(-5px);
}

.solution-card.featured {
    background: var(--navy-mid);
    border-color: transparent;
}

.solution-card.featured::after {
    background: var(--orange);
}

.solution-card.featured:hover {
    background: var(--navy);
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(11, 30, 56, .3);
}

.sol-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-border);
    transition: background .3s, border-color .3s;
}

.solution-card:hover .sol-icon {
    background: var(--blue-mid);
    border-color: var(--blue-mid);
}

.solution-card:hover .sol-icon i {
    color: #fff;
}

.solution-card.featured .sol-icon {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.solution-card.featured:hover .sol-icon {
    background: var(--orange);
    border-color: var(--orange);
}

.sol-icon i {
    font-size: 18px;
    color: var(--blue-mid);
    transition: color .3s;
}

.solution-card.featured .sol-icon i {
    color: rgba(255, 255, 255, 0.7);
}

.sol-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
}

.solution-card.featured .sol-title {
    color: #fff;
}

.sol-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.solution-card.featured .sol-desc {
    color: rgba(255, 255, 255, 0.6);
}

.sol-link {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-mid);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .3s;
}

.solution-card.featured .sol-link {
    color: var(--orange-light);
}

.solution-card:hover .sol-link {
    gap: 14px;
}

/* ══════════════════════════════════════════
   DOCUMENTAL CTA
══════════════════════════════════════════ */
#documental {
    padding: 0 0 110px;
    background: var(--white);
}

.doc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.doc-left {
    background: var(--gray-50);
    padding: 56px 48px;
    border-right: 1px solid var(--border);
}

.doc-right {
    background: var(--navy);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.doc-right::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(59, 130, 212, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.doc-right::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: rgba(224, 92, 10, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.doc-left-title {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doc-left h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 14px;
}

.doc-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 26px;
}

.doc-left p strong {
    color: var(--text-body);
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-700);
}

.check-item i {
    color: var(--earth);
    font-size: 13px;
}

.doc-right h3 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.doc-right p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 28px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.btn-white {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #fff;
    color: var(--navy);
    padding: 14px 26px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all .3s;
}

.btn-white:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ══════════════════════════════════════════
   SOBRE
══════════════════════════════════════════ */
#sobre {
    padding: 110px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

#sobre::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(74, 112, 85, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.sobre-img-wrap {
    position: relative;
}

.sobre-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.sobre-img-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid var(--blue-border);
    border-radius: calc(var(--radius-lg) + 4px);
    z-index: 0;
}

.sobre-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.sobre-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.sobre-img-placeholder i {
    font-size: 48px;
    color: var(--gray-300);
}

.sobre-img-placeholder span {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.sobre-badge {
    position: absolute;
    bottom: 26px;
    right: -22px;
    z-index: 2;
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sobre-badge-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--orange-light);
    line-height: 1;
}

.sobre-badge-label {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 3px;
}

.sobre-name {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 900;
    line-height: 1.02;
    color: var(--ink);
    margin-top: 14px;
}

.sobre-subtitle {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 22px;
}

.sobre-divider {
    width: 44px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 20px;
}

.sobre-text {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 13px;
}

.sobre-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 26px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--gray-700);
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all .3s;
}

.skill-item:hover {
    background: var(--blue-pale);
    border-color: var(--blue-border);
    color: var(--blue);
}

.skill-item i {
    color: var(--earth);
    font-size: 11px;
}

/* ══════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════ */
#depoimentos {
    padding: 110px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#depoimentos::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(59, 130, 212, 0.07), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dep-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange-light);
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.dep-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--orange-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.dep-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 52px;
    line-height: 1.1;
}

.dep-title .hl {
    color: var(--orange-light);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    width: 36px;
    height: 36px;
    background: rgba(224, 92, 10, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(224, 92, 10, 0.2);
}

.quote-icon i {
    color: var(--orange-light);
    font-size: 13px;
}

.quote-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.quote-stars i {
    color: var(--orange-light);
    font-size: 11px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.78;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.author-avatar i {
    color: rgba(255, 255, 255, 0.38);
    font-size: 17px;
}

.author-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.author-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 2px;
}

/* ══════════════════════════════════════════
   CONTATO
══════════════════════════════════════════ */
#contato {
    padding: 110px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

#contato::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(26, 75, 140, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contato-heading {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 16px;
}

.contato-desc {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 38px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
    transition: transform .2s;
}

.contact-info-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--blue-border);
}

.contact-icon i {
    color: var(--blue-mid);
    font-size: 14px;
}

.contact-label {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 42px 38px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 13px;
}

.form-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
    background: var(--gray-50);
    border: 1.5px solid var(--border);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 14px;
    outline: none;
    width: 100%;
    border-radius: var(--radius-sm);
    transition: all .3s;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 176, .1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: var(--gray-50);
}

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

.btn-submit {
    width: 100%;
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--orange);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(224, 92, 10, 0.3);
    transition: all .3s;
}

.btn-submit:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(224, 92, 10, 0.4);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
    background: #060F1A;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-icon i {
    color: #fff;
    font-size: 13px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
}

.footer-logo-name span {
    color: var(--orange-light);
}

.footer-logo-sub {
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: all .3s;
}

.social-btn:hover {
    border-color: var(--orange-light);
    color: var(--orange-light);
    background: rgba(224, 92, 10, 0.08);
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 13px;
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
    transition: all .3s;
    animation: pulse-green 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-float i {
    font-size: 23px;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 50px rgba(37, 211, 102, 0.65);
    }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width:1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-metrics {
        display: none;
    }

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

    .hero-tag-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .section-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .dep-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .sobre-img-wrap {
        max-width: 360px;
        margin: 0 auto;
    }


    .contato-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width:768px) {
    .container {
        padding: 0 22px;
    }

    .nav-links {
        display: none;
    }

    .hero-headline {
        font-size: 36px;
        text-align: center;
    }

    .hero-rule-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas,
    .hero-trust,
    .trust-avatars {
        justify-content: center;
        text-align: center;
    }

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

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

    .solution-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sol-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-badge {
        right: 0;
        bottom: 10px;
        padding: 12px 16px;
        text-align: center;
    }

    .sobre-badge-num {
        font-size: 28px;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .programa-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }

    .doc-split {
        grid-template-columns: 1fr;
    }

    .doc-left p,
    .doc-right p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .testimonial-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quote-icon,
    .quote-stars {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .testimonial-author {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card,
    .form-title,
    .form-label,
    .form-group {
        text-align: center;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .sobre-skills {
        grid-template-columns: 1fr;
    }

    .skill-item {
        justify-content: center;
    }

    .section-header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .section-body {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .tag,
    .hero-tag-pill {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        width: max-content;
    }

    .sobre-divider,
    .hero-rule-line,
    .section-tag,
    .dep-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-name,
    .sobre-subtitle,
    .sobre-text {
        text-align: center;
    }

    .doc-left,
    .doc-right {
        text-align: center;
        align-items: center;
    }

    .checklist {
        align-items: center;
        text-align: center;
    }

    .btn-white,
    .btn-primary,
    .btn-secondary,
    .btn-submit {
        margin-left: auto;
        margin-right: auto;
    }

    .contato-heading,
    .contato-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-list {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
}