:root {
    --navy: #07111f;
    --navy-soft: #0d1b2d;
    --blue: #163c65;
    --gold: #c8a45d;
    --gold-light: #e7d3a7;
    --white: #ffffff;
    --off-white: #f4f5f7;
    --light: #eef1f5;
    --text: #17202d;
    --muted: #6f7783;
    --border: rgba(7, 17, 31, 0.10);
    --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.eyebrow.dark {
    color: var(--gold);
}

h1,
h2,
h3 {
    line-height: 1.13;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(2.4rem, 4.7vw, 4.4rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 14px 40px rgba(200, 164, 93, 0.24);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: rgba(255,255,255,0.26);
    color: var(--white);
    background: rgba(255,255,255,0.03);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.5);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: 0.3s ease;
}

.site-header.scrolled {
    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.14);
}

.nav-wrapper {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.brand-mark {
    min-width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(200, 164, 93, 0.55);
    color: var(--gold-light);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(200,164,93,.14), rgba(255,255,255,.02));
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 0.98rem;
}

.brand-text small {
    color: rgba(255,255,255,0.55);
    margin-top: 5px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav .nav-cta {
    color: var(--navy);
    background: var(--gold);
    padding: 11px 18px;
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    background: transparent;
    padding: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s ease;
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 65% 30%, rgba(22,60,101,0.45), transparent 36%),
        linear-gradient(135deg, #07111f 0%, #0a1727 62%, #0d2035 100%);
    color: var(--white);
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.4;
}

.hero-orb-one {
    width: 420px;
    height: 420px;
    border: 1px solid rgba(200,164,93,0.2);
    right: -100px;
    top: 12%;
}

.hero-orb-two {
    width: 170px;
    height: 170px;
    background: rgba(200,164,93,0.08);
    left: 45%;
    bottom: 8%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px;
    align-items: center;
}

.hero-copy h1 span {
    color: var(--gold-light);
}

.hero-copy > p {
    max-width: 720px;
    color: rgba(255,255,255,0.69);
    font-size: 1.08rem;
    margin-top: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-highlights {
    display: flex;
    gap: 42px;
    margin-top: 54px;
}

.hero-highlights div {
    display: grid;
}

.hero-highlights strong {
    font-size: 1.8rem;
    color: var(--white);
}

.hero-highlights span {
    color: rgba(255,255,255,0.48);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.main-visual-card {
    width: min(100%, 500px);
    padding: 42px;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,0.14);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
    backdrop-filter: blur(18px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.30);
}

.visual-label {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.main-visual-card h2 {
    font-family: "Manrope", sans-serif;
    font-size: 2.2rem;
    margin-top: 14px;
    max-width: 370px;
}

.visual-network {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 38px;
}

.network-item {
    min-height: 118px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(7,17,31,0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.network-item i {
    color: var(--gold-light);
    font-size: 1.4rem;
}

.network-item span {
    font-size: 0.9rem;
    font-weight: 700;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 245px;
    padding: 17px 19px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(8,20,35,0.90);
    box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}

.floating-card i {
    color: var(--gold);
    font-size: 1.25rem;
}

.floating-card div {
    display: grid;
}

.floating-card strong {
    font-size: 0.88rem;
}

.floating-card span {
    color: rgba(255,255,255,0.48);
    font-size: 0.73rem;
}

.floating-card-top {
    top: 48px;
    right: -28px;
}

.floating-card-bottom {
    left: -18px;
    bottom: 58px;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.42);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.scroll-indicator span {
    width: 28px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 999px;
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translate(-50%, 0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Sobre */
.section-light {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.section-heading h2 {
    max-width: 600px;
}

.about-content {
    padding-top: 10px;
}

.about-content .lead {
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-content > p:not(.lead) {
    font-size: 1.02rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.about-pillars div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
}

.about-pillars i {
    color: var(--gold);
}

/* Áreas */
.areas-section {
    background: var(--navy);
    color: var(--white);
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-intro.left {
    margin-left: 0;
    text-align: left;
}

.section-intro p {
    margin-top: 20px;
    font-size: 1.02rem;
}

.areas-section .section-intro p {
    color: rgba(255,255,255,0.55);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.area-card {
    position: relative;
    min-height: 430px;
    padding: 34px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
    transition: 0.35s ease;
}

.area-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    right: -90px;
    bottom: -90px;
    background: var(--accent, rgba(200,164,93,0.16));
    filter: blur(2px);
    transition: 0.35s ease;
}

.area-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,255,255,0.25);
}

.area-card:hover::before {
    transform: scale(1.25);
}

.area-capital { --accent: rgba(200,164,93,0.20); }
.area-tech { --accent: rgba(52, 140, 255, 0.18); }
.area-development { --accent: rgba(60, 163, 110, 0.16); }
.area-land { --accent: rgba(164, 112, 66, 0.20); }

.area-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 44px;
}

.division-logo {
    display: grid;
    gap: 3px;
}

.division-logo span {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.division-logo small {
    color: var(--gold-light);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    max-width: 230px;
}

.area-icon {
    color: var(--gold-light);
    font-size: 1.7rem;
}

.area-card h3 {
    max-width: 520px;
    font-size: 1.72rem;
    margin-bottom: 18px;
}

.area-card p {
    color: rgba(255,255,255,0.58);
    max-width: 560px;
}

.area-card > a {
    position: absolute;
    left: 34px;
    bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 0.84rem;
    font-weight: 800;
}

/* Método */
.method-section {
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.step {
    position: relative;
    min-height: 310px;
    padding: 28px 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--off-white);
}

.step-number {
    display: block;
    color: rgba(7,17,31,0.18);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.step i {
    font-size: 1.6rem;
    color: var(--gold);
    margin: 50px 0 24px;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    font-size: 0.88rem;
}

/* Propósito */
.purpose-section {
    background:
        radial-gradient(circle at 50% 10%, rgba(22,60,101,0.42), transparent 38%),
        var(--navy);
    color: var(--white);
}

.purpose-section .section-intro p {
    color: rgba(255,255,255,0.55);
}

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

.purpose-card {
    padding: 34px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 26px;
    background: rgba(255,255,255,0.035);
}

.purpose-card.featured {
    background: linear-gradient(145deg, rgba(200,164,93,0.18), rgba(255,255,255,0.04));
    border-color: rgba(200,164,93,0.30);
}

.purpose-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--gold-light);
    background: rgba(200,164,93,0.10);
    margin-bottom: 28px;
}

.purpose-card > span {
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.purpose-card h3 {
    font-size: 1.55rem;
    margin: 14px 0 18px;
}

.purpose-card p {
    color: rgba(255,255,255,0.54);
}

/* Diferenciais */
.differentials-section {
    background: var(--off-white);
}

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

.differentials-copy p {
    margin: 24px 0 30px;
    max-width: 560px;
}

.differentials-list {
    display: grid;
    gap: 14px;
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.differential-item > i {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--gold);
    background: rgba(200,164,93,0.10);
}

.differential-item h3 {
    margin-bottom: 6px;
}

.differential-item p {
    font-size: 0.9rem;
}

/* CTA e formulário */
.cta-section {
    padding: 110px 0;
    background:
        linear-gradient(135deg, rgba(7,17,31,0.97), rgba(13,32,53,0.94)),
        var(--navy);
    color: var(--white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 80px;
    align-items: center;
}

.cta-copy p {
    color: rgba(255,255,255,0.58);
    margin-top: 22px;
    max-width: 560px;
}

.contact-links {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.contact-links i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.07);
    color: var(--gold-light);
}

.contact-links span {
    display: grid;
}

.contact-links small {
    color: rgba(255,255,255,0.42);
}

.contact-form {
    padding: 34px;
    background: var(--white);
    color: var(--text);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.82rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid #dfe3e8;
    background: #f9fafb;
    border-radius: 14px;
    padding: 15px 16px;
    color: var(--text);
    outline: none;
    transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,164,93,0.11);
}

.contact-form textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    border: 0;
    margin-top: 4px;
}

.form-note {
    margin-top: 12px;
    font-size: 0.72rem;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #040b14;
    color: var(--white);
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr 0.8fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-brand p {
    max-width: 480px;
    color: rgba(255,255,255,0.45);
    margin-top: 20px;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-links strong {
    color: var(--gold-light);
    margin-bottom: 6px;
}

.footer-links a,
.footer-links span {
    color: rgba(255,255,255,0.52);
    font-size: 0.86rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.38);
    font-size: 0.78rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 1.7rem;
    box-shadow: 0 15px 40px rgba(37,211,102,0.35);
    transition: 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

/* Animações */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-delay {
    transition-delay: 0.12s;
}

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

/* Responsivo */
@media (max-width: 1050px) {
    .hero-grid,
    .about-grid,
    .differentials-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 860px) {
    .section {
        padding: 86px 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        background: rgba(7,17,31,0.98);
        transform: translateX(100%);
        transition: 0.35s ease;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav a {
        font-size: 1.2rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .areas-grid,
    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        min-height: 390px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .nav-wrapper {
        min-height: 76px;
    }

    .brand-mark {
        min-width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-highlights {
        gap: 20px;
        justify-content: space-between;
    }

    .hero-highlights strong {
        font-size: 1.35rem;
    }

    .hero-highlights span {
        font-size: 0.62rem;
    }

    .hero-visual {
        min-height: auto;
        display: block;
    }

    .main-visual-card {
        padding: 26px;
    }

    .main-visual-card h2 {
        font-size: 1.75rem;
    }

    .floating-card {
        display: none;
    }

    .about-pillars,
    .steps,
    .form-row {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: auto;
    }

    .step i {
        margin: 30px 0 18px;
    }

    .area-card {
        min-height: 430px;
        padding: 28px;
    }

    .area-card > a {
        left: 28px;
        right: 28px;
    }

    .contact-form {
        padding: 22px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* ==========================
   VERSÃO 2 — LOGOMARCAS
========================== */
.brand-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 235px;
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-brand-row {
    margin: 0 0 18px;
}

.hero-logo {
    width: min(360px, 100%);
    height: auto;
    display: block;
}

.about-logo-wrap {
    margin-bottom: 22px;
}

.about-logo {
    width: min(320px, 100%);
    height: auto;
    display: block;
}

.division-logo-image {
    width: min(280px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 18px rgba(0,0,0,.12));
}

.division-logo-image.long {
    width: min(360px, 100%);
}

.footer-logo {
    width: min(260px, 100%);
    height: auto;
    display: block;
    margin-bottom: 6px;
}

.footer-logo-link {
    margin-bottom: 12px;
}

.area-top {
    align-items: flex-start;
}

.area-card h3 {
    margin-top: 8px;
}

@media (max-width: 860px) {
    .brand-logo {
        width: 200px;
    }

    .division-logo-image {
        width: min(220px, 100%);
    }

    .division-logo-image.long {
        width: min(250px, 100%);
    }
}

@media (max-width: 620px) {
    .brand-logo {
        width: 165px;
    }

    .hero-logo {
        width: min(260px, 100%);
    }

    .about-logo,
    .footer-logo {
        width: min(220px, 100%);
    }

    .division-logo-image,
    .division-logo-image.long {
        width: min(210px, 100%);
    }

    .area-top {
        margin-bottom: 26px;
    }
}


/* ==========================
   VERSÃO 3 — FORMULÁRIO PHP
========================== */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px 16px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
}

.form-alert.success {
    color: #17603a;
    background: #e9f8ef;
    border: 1px solid #bde8cd;
}

.form-alert.error {
    color: #8a2f2f;
    background: #fff0f0;
    border: 1px solid #f2c5c5;
}

.form-alert i {
    margin-top: 3px;
}


/* =====================================================
   VERSÃO 4 — REFINAMENTO VISUAL E CORREÇÕES FINAIS
===================================================== */
.site-header .nav-wrapper { min-height: 96px; }
.brand-logo { width: 265px; height: 72px; object-fit: contain; object-position: left center; }
.hero { min-height: 920px; padding: 150px 0 90px; }
.hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: 74px; }
.hero-copy { max-width: 760px; }
.hero-copy h1 { font-size: clamp(3.7rem, 5.7vw, 6.25rem); line-height: 1.05; }
.hero-copy > p { max-width: 690px; font-size: 1.02rem; }
.hero-visual { min-height: 610px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.main-visual-card { width: min(100%, 500px); padding: 38px; position: relative; z-index: 2; }
.main-visual-card h2 { font-size: 2.05rem; max-width: 410px; }
.visual-network { gap: 12px; }
.network-item { min-height: 110px; }
.floating-card { position: static; width: min(100%, 500px); padding: 15px 18px; background: rgba(8,20,35,.78); box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.floating-card-top, .floating-card-bottom { inset: auto; }
.floating-card-top { order: 2; }
.floating-card-bottom { order: 3; }
.hero-visual .main-visual-card { order: 1; }
.scroll-indicator { bottom: 18px; }

.about-logo { width: min(410px,100%); height: auto; }
.area-top { min-height: 106px; align-items: center; }
.division-logo-image { width: min(330px, calc(100% - 58px)); max-height: 100px; object-fit: contain; object-position: left center; }
.division-logo-image.long { width: min(405px, calc(100% - 58px)); }
.area-icon { flex: 0 0 auto; }
.area-card { min-height: 455px; }
.area-card h3 { margin-top: 0; }

.contact-form { position: relative; }
.contact-form .form-row { align-items: start; }

@media (max-width: 1100px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 900px; }
  .hero-visual { min-height: auto; max-width: 650px; margin: 0 auto; width: 100%; }
  .main-visual-card, .floating-card { width: 100%; }
}

@media (max-width: 860px) {
  .site-header .nav-wrapper { min-height: 82px; }
  .brand-logo { width: 220px; height: 60px; }
  .hero { padding-top: 118px; }
  .hero-copy h1 { font-size: clamp(3rem, 11vw, 5rem); }
  .area-top { min-height: 90px; }
  .division-logo-image, .division-logo-image.long { width: min(320px, calc(100% - 50px)); }
}

@media (max-width: 620px) {
  .brand-logo { width: 185px; height: 52px; }
  .hero { padding: 110px 0 74px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 13.4vw, 4.1rem); }
  .hero-copy > p { font-size: .96rem; }
  .hero-highlights { display: grid; grid-template-columns: repeat(3,1fr); }
  .main-visual-card { padding: 24px; border-radius: 26px; }
  .main-visual-card h2 { font-size: 1.65rem; }
  .visual-network { grid-template-columns: 1fr 1fr; }
  .floating-card { width: 100%; }
  .area-card { min-height: 440px; padding: 25px; }
  .area-top { min-height: 78px; gap: 10px; }
  .division-logo-image, .division-logo-image.long { width: calc(100% - 42px); max-height: 78px; }
  .area-icon { font-size: 1.35rem; }
}
