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

:root {
    --navy: #061f3f;
    --navy-2: #082c59;
    --navy-3: #0d3a70;
    --gold: #c99a35;
    --gold-2: #e2b44f;
    --white: #ffffff;
    --paper: #f6f7f9;
    --ink: #071d3b;
    --text: #1f2c3f;
    --muted: #667386;
    --line: #dfe4eb;
    --danger: #b42318;
    --shadow: 0 18px 40px rgba(7, 29, 59, .12);
    --radius: 8px;
    --font: 'Poppins', sans-serif;
    --max: 1440px;
    --header-h: 112px;
    --pad: 64px;
    --section: 76px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--paper);
    color: var(--text);
    display: flex;
    flex-direction: column;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section {
    padding: var(--section) 0;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(7, 29, 59, .08);
    box-shadow: 0 8px 28px rgba(7, 29, 59, .07);
    backdrop-filter: blur(14px);
}

.header-content {
    height: 100%;
    display: grid;
    grid-template-columns: 300px 1fr auto;
    gap: 28px;
    align-items: center;
}

.logo {
    width: 292px;
    justify-self: start;
}

.logo-img {
    width: 100%;
    height: auto;
}

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

.nav-link {
    position: relative;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .22s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-login-mobile {
    display: none;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.client-btn,
.btn-cta {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    border: 0;
    box-shadow: 0 12px 22px rgba(6, 31, 63, .18);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.client-btn i,
.btn-cta i {
    color: var(--gold-2);
}

.client-btn:hover,
.btn-cta:hover {
    background: var(--navy-2);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: var(--navy);
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

.hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 45%, rgba(226, 180, 79, .14), transparent 24%),
        radial-gradient(circle at 72% 30%, rgba(255, 255, 255, .16), transparent 18%),
        linear-gradient(115deg, rgba(6, 31, 63, .98), rgba(6, 31, 63, .94)),
        var(--navy);
    color: var(--white);
}

.hero-content {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    gap: 48px;
    align-items: center;
}

.hero-copy {
    display: grid;
    grid-template-columns: 3px 1fr;
    column-gap: 30px;
    align-items: start;
}

.hero-line {
    width: 3px;
    height: 224px;
    background: linear-gradient(var(--gold), transparent);
    margin-top: 8px;
}

.hero h1 {
    max-width: 820px;
    color: var(--white);
    font-size: 52px;
    line-height: 1.18;
    font-weight: 800;
}

.hero h1 span,
.contact-hero h2 span,
.clients-copy h2 span,
.quality-main h2 span {
    color: var(--gold-2);
}

.hero-benefits {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 34px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}

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

.hero-benefits i {
    color: var(--gold-2);
}

.hero-visual {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quality-orbit {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, rgba(226, 180, 79, .2) 0 1px, transparent 1px 18px),
        radial-gradient(circle, rgba(13, 58, 112, .85), rgba(6, 31, 63, .2) 62%, transparent 63%);
}

.quality-ring {
    position: absolute;
    inset: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gold-2);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, #184d86, var(--navy) 68%);
    box-shadow: inset 0 0 24px rgba(255, 255, 255, .12), 0 0 34px rgba(226, 180, 79, .22);
}

.quality-ring i {
    color: var(--white);
    font-size: clamp(72px, 7vw, 112px);
}

.orbit-icon {
    position: absolute;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-2);
    border-radius: 50%;
    color: var(--white);
    background: rgba(6, 31, 63, .9);
    font-size: 28px;
}

.icon-users {
    top: 38px;
    left: 40px;
}

.icon-doc {
    top: 56px;
    right: 8px;
}

.icon-chart {
    bottom: 62px;
    left: 16px;
}

.mission-section {
    padding: 0 0 24px;
    background: linear-gradient(180deg, transparent 0, transparent 42px, var(--paper) 43px);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: -52px;
}

.statement-card {
    position: relative;
    min-height: 194px;
    padding: 58px 42px 34px;
    background: var(--white);
    border: 1px solid rgba(7, 29, 59, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.statement-icon {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-2);
    font-size: 34px;
    box-shadow: 0 8px 18px rgba(6, 31, 63, .22);
}

.statement-card h2 {
    color: var(--ink);
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.statement-card h2::after,
.contact-form h2::after,
.contact-channels h2::after,
.state-list h3::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin: 8px auto 0;
    background: var(--gold);
}

.statement-card p {
    max-width: 620px;
    margin: 12px auto 0;
    color: var(--text);
    font-size: 17px;
}

.statement-card strong {
    color: var(--ink);
}

.quality-band {
    padding: 0 0 22px;
}

.quality-panel {
    display: grid;
    grid-template-columns: 1.35fr .95fr;
    gap: 38px;
    align-items: center;
    padding: 32px 44px;
    background: linear-gradient(135deg, var(--navy), #06294f);
    border-radius: var(--radius);
    color: var(--white);
    box-shadow: var(--shadow);
}

.quality-main {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 28px;
    align-items: center;
}

.quality-main > i {
    color: var(--gold-2);
    font-size: 76px;
}

.quality-main h2 {
    color: var(--white);
    font-size: 25px;
    margin-bottom: 10px;
}

.quality-main p {
    color: rgba(255, 255, 255, .86);
}

.quality-list {
    display: grid;
    gap: 12px;
    padding-left: 34px;
    border-left: 1px solid rgba(226, 180, 79, .55);
    list-style: none;
}

.quality-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .92);
}

.quality-list i {
    color: var(--gold-2);
    margin-top: 4px;
}

.stats-section {
    padding-bottom: 32px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border: 1px solid rgba(7, 29, 59, .1);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(7, 29, 59, .06);
}

.stat-item {
    min-height: 112px;
    display: grid;
    grid-template-columns: 76px 1fr;
    align-content: center;
    column-gap: 12px;
    padding: 18px 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: var(--line);
}

.stat-item i {
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    color: var(--gold);
    font-size: 48px;
}

.stat-item strong {
    color: var(--ink);
    font-size: 43px;
    line-height: 1;
    font-weight: 800;
}

.stat-item span {
    color: var(--ink);
    font-size: 15px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading span,
.section-kicker {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-heading h2,
.clients-copy h2 {
    color: var(--ink);
    font-size: 38px;
    line-height: 1.18;
}

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

.service-card {
    min-height: 260px;
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(7, 29, 59, .08);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(7, 29, 59, .07);
}

.service-card i {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(201, 154, 53, .12);
    font-size: 25px;
}

.service-card h3 {
    color: var(--ink);
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p,
.clients-copy p {
    color: var(--muted);
}

.clients-section {
    background: var(--white);
}

.clients-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 54px;
    align-items: center;
}

.clients-copy h2 {
    max-width: 520px;
    margin-bottom: 22px;
}

.clients-copy p {
    max-width: 520px;
    font-size: 18px;
}

.clients-copy strong {
    color: var(--gold);
}

.client-section-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding: 0 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 12px 22px rgba(6, 31, 63, .16);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.client-section-btn i {
    color: var(--gold-2);
}

.client-access-card {
    padding: 42px;
    background: linear-gradient(135deg, var(--navy), #08294f);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.access-card-header {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 28px;
}

.access-card-header > i {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-2);
    font-size: 30px;
}

.access-card-header strong,
.access-card-header span {
    display: block;
}

.access-card-header strong {
    font-size: 25px;
    line-height: 1.15;
}

.access-card-header span {
    color: rgba(255, 255, 255, .72);
    margin-top: 4px;
}

.client-access-card ul {
    display: grid;
    gap: 14px;
    list-style: none;
}

.client-access-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .9);
}

.client-access-card li i {
    color: var(--gold-2);
    margin-top: 4px;
}

.state-list {
    max-width: 520px;
    margin-top: 38px;
}

.state-list h3 {
    color: var(--ink);
    font-size: 22px;
    text-transform: uppercase;
}

.state-list h3::after {
    margin: 8px 0 6px;
}

.state-list div {
    display: grid;
    grid-template-columns: 1fr 70px;
    gap: 12px;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-bottom: 0;
    color: var(--ink);
    font-weight: 600;
}

.state-list div:first-of-type {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.state-list div:last-child {
    border-bottom: 1px solid var(--line);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.state-list strong {
    color: var(--gold);
    text-align: right;
}

.brazil-card {
    min-height: 520px;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 34px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 58% 42%, rgba(201, 154, 53, .12), transparent 30%),
        linear-gradient(135deg, #f7f8fa, #eef1f5);
    border: 1px solid rgba(7, 29, 59, .08);
}

.map-shape {
    position: relative;
    width: min(430px, 88vw);
    height: 440px;
    background: #e3e7ed;
    clip-path: polygon(45% 0, 61% 9%, 76% 8%, 90% 22%, 86% 38%, 97% 51%, 83% 61%, 78% 79%, 61% 83%, 53% 98%, 39% 84%, 23% 82%, 14% 66%, 0 54%, 12% 42%, 8% 25%, 25% 17%);
    box-shadow: inset 0 0 0 2px #fff, 0 18px 34px rgba(7, 29, 59, .14);
}

.map-shape::before,
.map-shape::after {
    content: "";
    position: absolute;
    background: var(--navy);
    opacity: .98;
}

.map-shape::before {
    width: 160px;
    height: 130px;
    left: 132px;
    top: 190px;
    clip-path: polygon(0 5%, 100% 0, 88% 84%, 28% 100%);
}

.map-shape::after {
    width: 118px;
    height: 90px;
    right: 80px;
    bottom: 112px;
    clip-path: polygon(10% 8%, 100% 0, 90% 74%, 0 100%);
}

.state-pin {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    border: 3px solid var(--gold);
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(7, 29, 59, .22);
}

.pin-sp {
    right: 118px;
    bottom: 96px;
    background: var(--gold);
    color: var(--ink);
}

.pin-mt {
    left: 164px;
    top: 220px;
}

.pin-mg {
    right: 120px;
    bottom: 162px;
}

.pin-es {
    right: 42px;
    bottom: 158px;
}

.pin-pe {
    right: 26px;
    top: 170px;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin-top: 18px;
    color: var(--ink);
    font-size: 14px;
}

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

.map-legend i {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 4px;
}

.legend-blue {
    background: var(--navy);
}

.legend-gold {
    background: var(--gold);
}

.legend-gray {
    background: #d9dee6;
}

.expansion-band {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 22px;
    align-items: center;
    margin-top: 34px;
    padding: 22px 30px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
}

.expansion-band i {
    color: var(--gold-2);
    font-size: 46px;
}

.expansion-band p {
    font-size: 22px;
}

.expansion-band strong {
    color: var(--gold-2);
}

.contact-hero {
    padding: 58px 0;
    background:
        radial-gradient(circle at 78% 50%, rgba(226, 180, 79, .14), transparent 20%),
        linear-gradient(110deg, var(--navy), #08284f);
    color: var(--white);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 34px;
    align-items: center;
}

.contact-hero h2 {
    max-width: 560px;
    color: var(--white);
    font-size: 44px;
    line-height: 1.18;
}

.contact-hero p {
    max-width: 520px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .88);
    font-size: 19px;
}

.contact-symbol {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.contact-symbol i {
    color: var(--gold-2);
    border: 1px solid rgba(226, 180, 79, .75);
    border-radius: 50%;
}

.contact-symbol i:nth-child(2) {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.contact-symbol i:nth-child(1) {
    width: 138px;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.contact-symbol i:nth-child(3) {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.contact-channels h2,
.contact-form h2 {
    color: var(--ink);
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-channels h2::after,
.contact-form h2::after {
    margin: 8px 0 0;
}

.channel-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 12px;
    min-height: 126px;
    padding: 20px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.channel-card > i {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 34px;
}

.channel-card span {
    display: grid;
}

.channel-card strong {
    color: var(--ink);
    font-size: 18px;
}

.channel-card b {
    color: var(--ink);
    font-size: 28px;
    line-height: 1.15;
}

.channel-card small {
    color: var(--text);
    font-size: 15px;
}

.commitment-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 14px;
    padding: 18px 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
}

.commitment-card img {
    width: 76px;
}

.commitment-card strong {
    color: var(--gold-2);
}

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

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

.field {
    position: relative;
    display: block;
}

.field i {
    position: absolute;
    top: 18px;
    left: 18px;
    color: #596475;
    z-index: 1;
}

.field input,
.field textarea,
.form-group input {
    width: 100%;
    min-height: 54px;
    padding: 15px 18px 15px 54px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: 0;
    transition: border .2s ease, box-shadow .2s ease;
}

.field textarea {
    min-height: 118px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 154, 53, .18);
}

.form-feedback {
    min-height: 20px;
    color: var(--danger);
    font-size: 14px;
    font-weight: 600;
}

.send-btn,
.btn-login,
.drive-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    border: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--white);
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}

.send-btn:hover,
.btn-login:hover,
.drive-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(201, 154, 53, .28);
}

.send-btn i {
    color: var(--white);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 30px;
    padding: 18px 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
}

.trust-strip span {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 6px 16px;
    padding: 4px 18px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.trust-strip span:last-child {
    border-right: 0;
}

.trust-strip i {
    grid-row: 1 / span 2;
    color: var(--gold-2);
    font-size: 34px;
}

.trust-strip strong {
    line-height: 1.2;
}

.trust-strip small {
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
}

.footer {
    margin-top: auto;
    background: #04172f;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .8fr 1fr;
    gap: 40px;
    padding-top: 46px;
    padding-bottom: 38px;
}

.footer-logo {
    width: 260px;
    margin-bottom: 18px;
}

.footer p,
.footer a {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
}

.footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.footer a {
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--gold-2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, .54);
}

.login-wrapper,
.painel-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background:
        radial-gradient(circle at 15% 18%, rgba(201, 154, 53, .12), transparent 25%),
        linear-gradient(135deg, #f7f8fa, #edf1f6);
}

.auth-split {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: 42px;
    align-items: stretch;
}

.presence-panel {
    padding: 42px;
    background: var(--white);
    border: 1px solid rgba(7, 29, 59, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.presence-panel .clients-copy h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.presence-panel .state-list {
    margin-top: 28px;
}

.presence-map {
    width: 100%;
    margin-top: 28px;
}

.presence-map img {
    width: 100%;
    height: auto;
    display: block;
}

.login-card,
.painel-card {
    width: 100%;
    max-width: 460px;
    padding: 42px;
    background: var(--white);
    border: 1px solid rgba(7, 29, 59, .08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.login-header {
    margin-bottom: 28px;
}

.login-icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-2);
    font-size: 24px;
}

.login-header h2,
.painel-card h2 {
    color: var(--ink);
    font-size: 26px;
}

.login-header p,
.user-email,
.loading-text {
    color: var(--muted);
}

.login-form {
    text-align: left;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-group input {
    padding-left: 16px;
}

.error-message,
.success-message {
    display: none;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.error-message {
    color: var(--danger);
    background: rgba(180, 35, 24, .08);
    border: 1px solid rgba(180, 35, 24, .18);
}

.success-message {
    color: #0f7a48;
    background: rgba(15, 122, 72, .08);
    border: 1px solid rgba(15, 122, 72, .18);
}

.loading-pulse {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite;
}

.pulse-dot:nth-child(2) {
    animation-delay: .2s;
}

.pulse-dot:nth-child(3) {
    animation-delay: .4s;
}

@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(.6);
        opacity: .45;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-spinner {
    width: 16px;
    height: 16px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .65s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.drive-section {
    margin: 28px 0;
}

.drive-label {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.btn-logout {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    font-weight: 700;
}

.btn-logout:hover {
    border-color: var(--danger);
    color: var(--danger);
}

@media (max-width: 1240px) {
    :root {
        --pad: 36px;
    }

    .header-content {
        grid-template-columns: 230px 1fr auto;
        gap: 18px;
    }

    .logo {
        width: 230px;
    }

    .nav {
        gap: 18px;
    }

    .nav-link,
    .client-btn {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .stat-item {
        grid-template-columns: 58px 1fr;
        padding: 18px;
    }

    .stat-item strong {
        font-size: 34px;
    }
}

@media (max-width: 1080px) {
    :root {
        --header-h: 86px;
        --section: 58px;
    }

    .auth-split {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 560px;
    }

    .header-content {
        grid-template-columns: 1fr auto;
    }

    .logo {
        width: 210px;
    }

    .nav {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px var(--pad) 18px;
        background: var(--white);
        border-bottom: 1px solid rgba(7, 29, 59, .1);
        box-shadow: 0 16px 30px rgba(7, 29, 59, .12);
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        padding: 13px 0;
    }

    .nav-login-mobile {
        display: block;
    }

    .client-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content,
    .clients-layout,
    .contact-hero-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 42px 0 70px;
    }

    .hero-content {
        min-height: auto;
    }

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

    .hero-line {
        width: 72px;
        height: 3px;
        margin: 0 0 18px;
        background: var(--gold);
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-benefits {
        grid-column: 1;
    }

    .mission-grid,
    .services-grid,
    .stats-strip,
    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-panel,
    .quality-main {
        grid-template-columns: 1fr;
    }

    .quality-list {
        padding-left: 0;
        padding-top: 24px;
        border-left: 0;
        border-top: 1px solid rgba(226, 180, 79, .55);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .trust-strip span:nth-child(2) {
        border-right: 0;
    }

    .trust-strip span {
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding: 14px 18px;
    }

    .trust-strip span:nth-child(3),
    .trust-strip span:nth-child(4) {
        border-bottom: 0;
    }

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

@media (max-width: 680px) {
    :root {
        --pad: 20px;
        --section: 46px;
    }

    .logo {
        width: 174px;
    }

    .hero h1,
    .contact-hero h2,
    .section-heading h2,
    .clients-copy h2 {
        font-size: 30px;
    }

    .hero-benefits {
        gap: 12px;
    }

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

    .quality-orbit {
        width: min(300px, 94vw);
    }

    .orbit-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .mission-grid,
    .services-grid,
    .stats-strip,
    .trust-strip,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .statement-card {
        padding: 54px 22px 28px;
    }

    .mission-grid {
        gap: 56px;
    }

    .quality-panel {
        padding: 28px 22px;
    }

    .quality-main > i {
        font-size: 56px;
    }

    .stat-item::after,
    .trust-strip span {
        border-right: 0;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid var(--line);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .brazil-card {
        min-height: 420px;
        padding: 22px;
    }

    .map-shape {
        width: min(300px, 88vw);
        height: 310px;
    }

    .map-shape::before {
        width: 108px;
        height: 90px;
        left: 94px;
        top: 132px;
    }

    .map-shape::after {
        width: 84px;
        height: 66px;
        right: 54px;
        bottom: 76px;
    }

    .state-pin {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .pin-sp {
        right: 78px;
        bottom: 64px;
    }

    .pin-mt {
        left: 112px;
        top: 152px;
    }

    .pin-mg {
        right: 82px;
        bottom: 112px;
    }

    .pin-es {
        right: 28px;
        bottom: 112px;
    }

    .pin-pe {
        right: 14px;
        top: 118px;
    }

    .expansion-band,
    .channel-card,
    .commitment-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .expansion-band p,
    .channel-card b {
        font-size: 22px;
    }

    .contact-symbol {
        display: none;
    }

    .field input,
    .field textarea {
        padding-left: 48px;
    }

    .login-card,
    .painel-card {
        padding: 32px 22px;
    }

    .presence-panel {
        padding: 30px 22px;
    }
}
