:root {
    --navy-950: #030914;
    --navy-900: #07111f;
    --navy-800: #0d1c2f;
    --navy-700: #142a44;
    --gold-500: #c9952f;
    --gold-400: #d9ad53;
    --gold-300: #e8c77f;
    --sand-100: #f6f1e8;
    --white: #ffffff;
    --ink: #101722;
    --muted: #6c7683;
    --line: rgba(16, 23, 34, .12);
    --shadow: 0 28px 70px rgba(3, 9, 20, .14);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--navy-950);
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button, input, textarea { font: inherit; }

.svg-sprite {
    width: 0;
    height: 0;
    position: absolute;
    overflow: hidden;
}

.icon {
    width: 1.25em;
    height: 1.25em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

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

.topbar {
    background: var(--navy-950);
    color: rgba(255,255,255,.72);
    font-size: .76rem;
    letter-spacing: .05em;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-links {
    display: flex;
    gap: 24px;
}

.topbar a:hover { color: var(--gold-400); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7,17,31,.92);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
    background: rgba(3,9,20,.97);
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand img {
    width: 48px;
    height: 54px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1;
    letter-spacing: .16em;
}

.brand-copy strong {
    font-size: .96rem;
    font-weight: 800;
}

.brand-copy small {
    color: var(--gold-400);
    margin-top: 7px;
    font-size: .66rem;
    letter-spacing: .34em;
}

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

.main-nav > a:not(.btn) {
    position: relative;
    font-size: .87rem;
    font-weight: 650;
    color: rgba(255,255,255,.78);
}

.main-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--gold-400);
    transition: right .25s ease;
}

.main-nav > a:not(.btn):hover,
.main-nav > a.active {
    color: #fff;
}

.main-nav > a:not(.btn):hover::after,
.main-nav > a.active::after {
    right: 0;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.45);
    font-size: .75rem;
    font-weight: 800;
}

.language-switch a.active,
.language-switch a:hover { color: var(--gold-400); }

.menu-toggle {
    display: none;
    padding: 10px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    font-size: .89rem;
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lg {
    min-height: 56px;
    padding-inline: 28px;
}

.btn-gold {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 14px 30px rgba(201,149,47,.2);
}

.btn-gold:hover {
    box-shadow: 0 18px 34px rgba(201,149,47,.34);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.04);
}

.btn-outline:hover { background: rgba(255,255,255,.1); }

.btn-outline-light {
    color: #fff;
    border-color: rgba(255,255,255,.28);
}

.btn-dark {
    color: #fff;
    background: var(--navy-900);
}

.btn-whatsapp {
    color: #fff;
    background: #158f55;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    color: #fff;
    background-image: url("../img/fundo.png");
    background-repeat: no-repeat;
    background-position: center 42%;
    background-size: cover;
    isolation: isolate;
    overflow: hidden;
}

/*
 * A pessoa está posicionada no lado esquerdo da imagem.
 * O degradê escurece o lado direito para receber o conteúdo.
 */
.hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 9, 20, .08) 0%,
        rgba(3, 9, 20, .16) 26%,
        rgba(3, 9, 20, .62) 56%,
        rgba(3, 9, 20, .94) 100%
    );
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 9, 20, .20) 0%,
        transparent 35%,
        rgba(3, 9, 20, .38) 100%
    );
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-block: 86px;
}

.hero-copy {
    width: min(100%, 650px);
    margin-left: auto;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    color: var(--gold-400);
    font-size: .77rem;
    font-weight: 850;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 650px;
    margin: 18px 0 24px;
    font-size: clamp(3rem, 5vw, 5.35rem);
    line-height: .98;
    letter-spacing: -.055em;
    text-wrap: balance;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .55);
}

.hero-copy > p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    text-shadow: 0 3px 14px rgba(0, 0, 0, .65);
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 42px;
    color: rgba(255, 255, 255, .74);
    font-size: .82rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badges .icon {
    color: var(--gold-400);
}

/* A decoração antiga não é necessária no banner com fotografia completa. */
.hero-lines {
    display: none;
}

.trust-strip {
    background: var(--sand-100);
    border-bottom: 1px solid #e8dfd0;
}

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

.trust-grid > div {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 98px;
    padding: 18px 30px;
    border-right: 1px solid #ded3c1;
}

.trust-grid > div:last-child { border-right: 0; }

.trust-grid strong {
    color: var(--navy-900);
    letter-spacing: .12em;
}

.trust-grid span {
    color: #6f675e;
    font-size: .84rem;
}

.section {
    padding-block: 110px;
}

.section-soft { background: #f7f8fa; }

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(201,149,47,.12), transparent 30%),
        var(--navy-950);
}

.split-grid,
.profile-grid,
.dubai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-inner h2 {
    margin: 13px 0 20px;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.section-copy p,
.section-heading > p {
    color: var(--muted);
    font-size: 1.02rem;
}

.section-copy p + p { margin-top: 16px; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    color: var(--navy-900);
    font-weight: 800;
}

.text-link:hover { color: var(--gold-500); }

.metric-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.metric {
    min-height: 190px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid var(--line);
    background: #fff;
}

.metric:last-child { border-right: 0; }

.metric strong {
    color: var(--gold-500);
    font-size: 1.55rem;
}

.metric span {
    margin-top: 8px;
    color: var(--navy-800);
    font-size: .85rem;
    font-weight: 700;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.section-dark .section-heading > p { color: rgba(255,255,255,.6); }

.section-heading.compact {
    grid-template-columns: 1fr;
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

.service-card {
    min-height: 310px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,149,47,.5);
    background: rgba(255,255,255,.06);
}

.icon-box {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    color: var(--gold-400);
    background: rgba(201,149,47,.12);
    border: 1px solid rgba(201,149,47,.25);
}

.service-card h3,
.value-card h3 {
    margin: 44px 0 12px;
    font-size: 1.24rem;
}

.service-card p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: .92rem;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

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

.commodity-card {
    position: relative;
    min-height: 410px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(3,9,20,.14);
}

.commodity-card img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    transition: transform .5s ease;
}

.commodity-card:hover img { transform: scale(1.06); }

.commodity-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 70px 22px 24px;
    color: #fff;
    background: linear-gradient(transparent, rgba(3,9,20,.95));
}

.commodity-overlay span {
    color: var(--gold-400);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .18em;
}

.commodity-overlay h3 {
    margin: 6px 0 0;
    font-size: 1.35rem;
}

.dubai-feature {
    color: #fff;
    background: var(--navy-800);
}

.dubai-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.3);
}

.dubai-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: inherit;
}

.dubai-image img {
    width: 100%;
    height: 610px;
    object-fit: cover;
}

.dubai-feature .section-copy p {
    color: rgba(255,255,255,.65);
}

.dubai-feature .text-link { color: #fff; }

.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.82);
    font-weight: 650;
}

.check-list .icon {
    color: var(--gold-400);
    width: 21px;
    height: 21px;
}

.check-list-dark li { color: var(--ink); }

.process-section { background: #f7f8fa; }

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

.process-card {
    position: relative;
    min-height: 180px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.section-dark .process-card {
    border-color: rgba(255,255,255,.09);
    background: rgba(255,255,255,.04);
}

.process-card > span {
    color: var(--gold-500);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .18em;
}

.process-card h3 {
    margin: 50px 0 0;
    font-size: 1.1rem;
}

.process-card p {
    color: rgba(255,255,255,.58);
    font-size: .9rem;
}

.process-grid-detailed .process-card { min-height: 270px; }

.cta-section {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(3,9,20,.96), rgba(7,17,31,.82)),
        url("../img/dubai-skyline.jpg") center/cover;
}

.cta-inner {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-inner > div { max-width: 760px; }

.cta-inner p {
    color: rgba(255,255,255,.68);
    max-width: 640px;
}

.page-hero {
    position: relative;
    padding-block: 115px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(201,149,47,.2), transparent 30%),
        var(--navy-950);
    overflow: hidden;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 70px;
}

.page-hero h1 {
    max-width: 820px;
    margin: 18px 0;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.page-hero p {
    max-width: 700px;
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
}

.page-hero-mark {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: rgba(255,255,255,.04);
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .7;
    user-select: none;
}

.page-hero-mark span {
    margin-top: 28px;
    color: var(--gold-400);
    font-size: .12em;
    letter-spacing: .42em;
}

.profile-image {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: 60% center;
}

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

.value-card {
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

.value-card p { color: var(--muted); }

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

.campaign-grid img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-detail {
    position: relative;
    min-height: 330px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.service-detail:hover {
    border-color: rgba(201,149,47,.55);
    box-shadow: 0 20px 45px rgba(3,9,20,.09);
}

.service-number {
    position: absolute;
    top: 18px;
    right: 24px;
    color: rgba(3,9,20,.055);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.service-detail h2 {
    margin: 38px 0 10px;
    font-size: 1.5rem;
}

.service-detail p { color: var(--muted); }

.commodity-catalog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.catalog-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 38px rgba(3,9,20,.07);
}

.catalog-image {
    position: relative;
    height: 310px;
    overflow: hidden;
    background: #eee;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.catalog-card:hover img { transform: scale(1.05); }

.catalog-image span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    color: var(--navy-950);
    background: var(--gold-400);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.catalog-content { padding: 28px; }

.catalog-content h2 {
    margin: 0 0 10px;
    font-size: 1.55rem;
}

.catalog-content p { color: var(--muted); }

.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 36px;
    padding: 24px 28px;
    color: #665a45;
    background: #fbf4e7;
    border: 1px solid #ead8b9;
    border-radius: 16px;
}

.notice-box .icon {
    color: var(--gold-500);
    width: 27px;
    height: 27px;
}

.notice-box p { margin: 0; }

.dubai-page-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: #fff;
    background: url("../img/dubai-skyline.jpg") center/cover no-repeat;
}

.dubai-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,9,20,.96) 0%, rgba(3,9,20,.78) 48%, rgba(3,9,20,.18) 100%);
}

.dubai-page-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.dubai-page-content h1 {
    margin: 18px 0 24px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.dubai-page-content p {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 1.08rem;
}

.dubai-poster {
    display: flex;
    justify-content: center;
}

.dubai-poster img {
    width: min(100%, 470px);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 70px;
    align-items: start;
}

.contact-panel {
    position: sticky;
    top: 125px;
    padding: 38px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(201,149,47,.22), transparent 30%),
        var(--navy-900);
    border-radius: 24px;
}

.contact-panel h2 {
    margin: 14px 0 28px;
    font-size: 2.1rem;
}

.contact-list {
    display: grid;
    gap: 20px;
    padding: 0;
    margin: 0 0 34px;
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-list small {
    display: block;
    color: rgba(255,255,255,.5);
}

.contact-list a,
.contact-list span {
    font-weight: 650;
}

.contact-form-wrap {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    font-size: .84rem;
    font-weight: 750;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d8dde3;
    border-radius: 12px;
    padding: 14px 15px;
    outline: none;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(201,149,47,.12);
}

.contact-form textarea { resize: vertical; }

.privacy-text {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
}

.alert-success {
    color: #0a6d42;
    background: #e8f8f0;
    border: 1px solid #bfe8d3;
}

.alert-error {
    color: #9b2c2c;
    background: #fff0f0;
    border: 1px solid #f2c4c4;
}

.site-footer {
    padding-top: 80px;
    color: #fff;
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr .8fr;
    gap: 50px;
    padding-bottom: 55px;
}

.brand-footer { color: #fff; }

.footer-brand p {
    max-width: 380px;
    color: rgba(255,255,255,.54);
}

.site-footer h3 {
    margin: 0 0 20px;
    color: var(--gold-400);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-contact {
    color: rgba(255,255,255,.62);
    font-size: .9rem;
}

.footer-links a:hover,
.footer-contact a:hover { color: #fff; }

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact .icon { color: var(--gold-400); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-block: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.42);
    font-size: .76rem;
}

.footer-bottom p {
    max-width: 600px;
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    z-index: 45;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #158f55;
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(0,0,0,.25);
}

.floating-whatsapp .icon {
    width: 28px;
    height: 28px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
    .hero {
        min-height: 700px;
        background-position: 34% center;
    }

    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(3, 9, 20, .12) 0%,
            rgba(3, 9, 20, .28) 32%,
            rgba(3, 9, 20, .78) 62%,
            rgba(3, 9, 20, .96) 100%
        );
    }

    .hero-grid {
        min-height: 700px;
        padding-block: 72px;
    }

    .hero-copy {
        width: min(58%, 610px);
    }

    .menu-toggle { display: inline-grid; place-items: center; }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 18px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 16px;
        background: var(--navy-950);
        box-shadow: 0 30px 60px rgba(0,0,0,.3);
    }

    .main-nav.open { display: flex; }

    .main-nav > a:not(.btn) { padding: 12px 8px; }

    .main-nav > a:not(.btn)::after { display: none; }

    .language-switch { padding: 12px 8px; }

    .nav-cta { margin-top: 10px; }

    .split-grid,
    .profile-grid,
    .dubai-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


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

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .contact-panel { position: static; }
}

@media (max-width: 720px) {
    .hero {
        min-height: 760px;
        background-position: 28% center;
    }

    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(3, 9, 20, .14) 0%,
            rgba(3, 9, 20, .20) 36%,
            rgba(3, 9, 20, .82) 68%,
            rgba(3, 9, 20, .98) 100%
        );
    }

    .hero::after {
        background: linear-gradient(
            90deg,
            rgba(3, 9, 20, .18),
            rgba(3, 9, 20, .08)
        );
    }

    .hero-grid {
        min-height: 760px;
        align-items: flex-end;
        justify-content: flex-start;
        padding-block: 52px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding: 24px;
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 20px;
        background: rgba(3, 9, 20, .55);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
        backdrop-filter: blur(8px);
    }

    .hero h1 {
        margin-block: 14px 18px;
        font-size: clamp(2.45rem, 12vw, 3.25rem);
    }

    .hero-copy > p {
        font-size: .98rem;
    }

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

    .topbar-inner { min-height: 38px; }

    .topbar-inner > span { display: none; }

    .topbar-links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        font-size: .68rem;
    }

    .nav-wrap { min-height: 74px; }

    .brand img { width: 40px; height: 46px; }

    .brand-copy strong { font-size: .83rem; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-badges { display: grid; }

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

    .trust-grid > div {
        min-height: 72px;
        border-right: 0;
        border-bottom: 1px solid #ded3c1;
        padding-inline: 18px;
    }

    .section { padding-block: 76px; }

    .section-copy h2,
    .section-heading h2,
    .cta-inner h2 { font-size: 2.35rem; }

    .metric-panel { grid-template-columns: 1fr; }

    .metric {
        min-height: 120px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .services-grid,
    .commodity-grid,
    .process-grid,
    .values-grid,
    .campaign-grid,
    .service-detail-grid,
    .commodity-catalog {
        grid-template-columns: 1fr;
    }

    .commodity-card,
    .commodity-card img { min-height: 360px; }

    .page-hero { padding-block: 80px; }

    .page-hero-grid { grid-template-columns: 1fr; }

    .page-hero-mark { display: none; }

    .profile-image img { height: 560px; }

    .dubai-page-hero { min-height: 650px; }

    .dubai-page-content h1 { font-size: 3rem; }

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

    .contact-form-wrap,
    .contact-panel { padding: 26px; }

    .cta-inner {
        min-height: 440px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

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

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

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }
}
/* =====================================================
   BANNER PRINCIPAL COM FUNDO DE DUBAI
===================================================== */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;

    background-image: url("/assets/img/fundo.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Escurecimento para permitir a leitura do texto */
.hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3, 9, 20, 0.10) 0%,
        rgba(3, 9, 20, 0.20) 35%,
        rgba(3, 9, 20, 0.72) 62%,
        rgba(3, 9, 20, 0.96) 100%
    );

    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 40px), 1180px);
    min-height: 760px;
    margin-inline: auto;
    padding-block: 80px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Texto no lado direito para não cobrir a pessoa */
.hero-copy {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;
    margin-left: auto;
}

.hero .eyebrow {
    display: inline-block;
    margin-bottom: 16px;

    color: var(--gold-400);
    font-size: 0.77rem;
    font-weight: 850;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 620px;
    margin: 0 0 25px;

    color: #ffffff;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;

    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.65);
}

.hero-copy > p {
    max-width: 580px;
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.75;

    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.75);
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 40px;

    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badges .icon {
    color: var(--gold-400);
}

/* Elemento decorativo */
.hero-lines {
    position: absolute;
    z-index: 1;
    right: -10%;
    bottom: -150px;

    width: 70%;
    height: 390px;

    border: 1px solid rgba(201, 149, 47, 0.15);
    border-radius: 50%;
    transform: rotate(-8deg);

    pointer-events: none;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
    .hero,
    .hero-grid {
        min-height: 700px;
    }

    .hero {
        background-position: 36% center !important;
    }

    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(3, 9, 20, 0.20) 0%,
            rgba(3, 9, 20, 0.50) 42%,
            rgba(3, 9, 20, 0.94) 100%
        );
    }

    .hero-copy {
        max-width: 570px;
    }

    .hero h1 {
        font-size: clamp(3rem, 7vw, 4.6rem);
    }
}

/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 720px) {
    .hero {
        min-height: 760px;
        align-items: flex-end;

        background-position: 27% center !important;
    }

    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(3, 9, 20, 0.08) 0%,
            rgba(3, 9, 20, 0.25) 30%,
            rgba(3, 9, 20, 0.88) 64%,
            rgba(3, 9, 20, 0.98) 100%
        );
    }

    .hero-grid {
        min-height: 760px;
        align-items: flex-end;
        padding-top: 250px;
        padding-bottom: 55px;
    }

    .hero-copy {
        max-width: 100%;
        margin-left: 0;
    }

    .hero .eyebrow {
        font-size: 0.66rem;
        line-height: 1.6;
    }

    .hero h1 {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: clamp(2.45rem, 12vw, 3.3rem);
        line-height: 1;
    }

    .hero-copy > p {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 26px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-badges {
        display: grid;
        gap: 10px;
        margin-top: 28px;
    }

    .hero-lines {
        display: none;
    }
}