/* ============================================================
   ATHENA BUSINESS — style.css
   Design system · Navbar · Hero · Sections · Footer · Modais
   ============================================================ */

/* ── Reset & Box-sizing ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variáveis ── */
:root {
    --black:        #1E1E1E;
    --black-deep:   #111111;
    --off-white:    #DEDDD7;
    --grey-light:   #F2F3F3;
    --grey-mid:     #CED0D2;
    --grey-dark:    #535960;
    --white:        #FFFFFF;
    --green-dark:   #243728;
    --green-mid:    #2A4030;
    --gold:         #C9A84C;
    --gold-dark:    #A6874B;
    --gold-light:   #D4B96A;
    --font-sans:    'Open Sans', sans-serif;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.10);
    --shadow-md:    0 4px 16px rgba(0,0,0,.14);
    --shadow-lg:    0 12px 32px rgba(0,0,0,.16);
    --r-sm: 4px; --r-md: 8px; --r-lg: 20px; --r-xl: 40px; --r-2xl: 60px;
    --ease: all .22s ease;
    --nav-h: 84px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--black);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* ── Helpers de visibilidade ── */
.hide-mobile  { display: flex !important; }
.show-mobile  { display: none !important; }

/* ── Tipografia global ── */
.section-label {
    font-size: .78rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold-dark);
    margin-bottom: 10px; display: block;
}
.section-label.light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300; line-height: 1.35; color: var(--black);
    margin-bottom: 14px; letter-spacing: -.02em;
}
.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: .95rem; color: var(--grey-dark); line-height: 1.7; max-width: 560px;
}
.section-header-text   { margin-bottom: 48px; }
.section-header-text.center { text-align: center; }
.section-header-text.center .section-subtitle { margin: 0 auto; }

.section-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.grey-bg { background: var(--grey-light); }

.trust-strip,
.partners-section,
.highlight-section,
.services-section,
.compliance-section,
.atendimento-section,
.forms-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 640px;
}

/* Local utility subset used by dynamic inner pages.
   This replaces the Tailwind CDN runtime while preserving the approved markup. */
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.flex-shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; }
.mb-1 { margin-bottom: .25rem; }
[class~="mb-1.5"] { margin-bottom: .375rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-28 { padding-top: 7rem; }
.pb-16 { padding-bottom: 4rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.text-center { text-align: center; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-widest { letter-spacing: .1em; }
.transition { transition-property: color, background-color, border-color, box-shadow, transform, opacity; transition-duration: .2s; transition-timing-function: ease; }
.shadow-md { box-shadow: var(--shadow-md); }
[class~="bg-[#243728]"] { background-color: #243728; }
[class~="bg-[#b8974b]"] { background-color: #b8974b; }
.bg-white { background-color: #fff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
[class~="text-[#243728]"] { color: #243728; }
[class~="text-[#b8974b]"] { color: #b8974b; }
.text-white { color: #fff; }
[class~="text-white/70"] { color: rgba(255,255,255,.7); }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }
[class~="hover:border-[#b8974b]/30"]:hover { border-color: rgba(184,151,75,.3); }
[class~="hover:bg-[#d4b06a]"]:hover { background-color: #d4b06a; }
.group:hover [class~="group-hover:bg-[#b8974b]"] { background-color: #b8974b; }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ── Botões ── */
.btn-primary-dark {
    background: var(--black); color: var(--white);
    border-radius: var(--r-sm); padding: 14px 28px;
    font-size: .95rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--ease);
}
.btn-primary-dark:hover { background: var(--green-dark); box-shadow: var(--shadow-md); }
.btn-primary-dark.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.menu-section {
    background: var(--black);
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 40px;
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; transition: var(--ease);
    width: 100%;
}
.menu-section.scrolled {
    background: rgba(20,20,20,.98);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    backdrop-filter: blur(8px);
}

.menu-container { display: flex; align-items: center; gap: 56px; }

.menu-logo-link { display: flex; align-items: center; }
.menu-logo-img  { height: 44px; width: auto; object-fit: contain; }

.menu-links-container { display: flex; align-items: center; gap: 4px; }

/* Botões de flyout desktop */
.menu-links {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: var(--r-sm);
    color: var(--white); transition: var(--ease); background: none;
}
.menu-links:hover { background: rgba(255,255,255,.08); }
.menu-link-text { font-size: .92rem; font-weight: 600; white-space: nowrap; }

.menu-chevron { width: 11px; height: 8px; color: rgba(255,255,255,.7); transition: transform .22s ease; flex-shrink: 0; }
.menu-chevron.open { transform: rotate(180deg); }

.menu-actions-container { display: flex; align-items: center; gap: 12px; }

.btn-menu-solid {
    background: var(--white); color: var(--black);
    border-radius: var(--r-sm); padding: 8px 20px;
    font-size: .88rem; font-weight: 600;
    white-space: nowrap; transition: var(--ease); display: inline-block;
}
.btn-menu-solid:hover { background: var(--off-white); }

.btn-menu-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,.7);
    border-radius: var(--r-sm); padding: 7px 20px;
    font-size: .88rem; font-weight: 600;
    white-space: nowrap; transition: var(--ease); display: inline-block;
}
.btn-menu-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* Hamburger */
.hamburger-btn {
    padding: 8px; display: none;
    flex-direction: column; gap: 5px; align-items: center; justify-content: center;
    background: none; border: none;
}
.hamburger-btn span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--ease); }

/* ══════════════════════════════════════════════
   FLYOUT DESKTOP
══════════════════════════════════════════════ */
.flyout-menu-section {
    position: fixed; top: var(--nav-h); left: 0;
    background: var(--off-white);
    border-radius: 0 var(--r-xl) var(--r-xl) var(--r-xl);
    box-shadow: var(--shadow-lg);
    padding: 28px 32px 40px;
    min-width: 240px; z-index: 990;
    animation: flyoutIn .18s ease;
}
.flyout-menu-section[hidden] { display: none; }

@keyframes flyoutIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.flyout-menu-container { display: flex; flex-direction: column; gap: 4px; }
.flyout-label {
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--grey-dark); margin-bottom: 10px;
}
.flyout-menu-links { display: flex; flex-direction: column; gap: 2px; }
.flyout-menu-link {
    font-size: .92rem; font-weight: 600; color: var(--black);
    padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,.07);
    transition: color .2s ease; display: block;
}
.flyout-menu-link:hover { color: var(--gold-dark); }
.flyout-menu-link:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════
   MOBILE MENU — nova estrutura com CSS transitions
══════════════════════════════════════════════ */

/* Overlay escuro */
.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.55);
    z-index: 1090; opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.mobile-menu-overlay.visible { opacity: 1; pointer-events: auto; }

/* Painel principal do menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(340px, 90vw);
    background: var(--black-deep);
    z-index: 1100;
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: right .3s cubic-bezier(.4,0,.2,1);
    will-change: right;
}
.mobile-menu.open { right: 0; }

/* Cabeçalho dentro do menu */
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0;
}
.mobile-menu-logo { height: 36px; width: auto; }
.mobile-menu-close {
    color: var(--white); font-size: 1.2rem; padding: 6px 8px;
    border-radius: var(--r-sm); transition: background .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.1); }

/* Botão voltar */
.mobile-back-btn {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,.85); font-size: .97rem; font-weight: 600;
    padding: 4px 0; background: none; border: none;
}
.mobile-back-btn i { font-size: .8rem; color: var(--gold); }

/* Telas do menu (principal, sub-menus) */
.mobile-menu-screen {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    overflow-y: auto; overflow-x: hidden;
    transform: translateX(0);
    transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .28s ease;
}
.mobile-menu-screen[hidden] { display: none; }
.mobile-menu-screen.slide-in { animation: slideIn .28s cubic-bezier(.4,0,.2,1) forwards; }

@keyframes slideIn {
    from { transform: translateX(40px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* Navegação dentro das telas */
.mobile-nav {
    display: flex; flex-direction: column;
    padding: 8px 0; flex: 1;
    overflow-y: auto;
}

.mobile-nav-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 17px 24px;
    font-size: .97rem; font-weight: 600; color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: none; text-align: left; width: 100%;
    transition: background .15s ease;
    cursor: pointer;
}
.mobile-nav-item:hover { background: rgba(255,255,255,.05); }
.mobile-nav-item i { font-size: .8rem; color: rgba(255,255,255,.5); }
.mobile-nav-item.has-sub { cursor: pointer; }

/* Ações (botões) no rodapé do mobile menu */
.mobile-menu-actions {
    display: flex; flex-direction: column; gap: 12px;
    padding: 24px; border-top: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0; margin-top: auto;
}
.mobile-btn { display: block; text-align: center; padding: 12px 20px; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero-section {
    position: relative; width: 100%; min-height: 100vh;
    background: var(--black-deep);
    display: flex; flex-direction: column;
    overflow: visible; padding-top: var(--nav-h);
}

#neuralCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none; display: block;
}

.hero-bg-bege { display: none; }

.hero-split {
    flex: 1; display: flex; align-items: stretch;
    position: relative; z-index: 2;
    min-height: calc(100vh - var(--nav-h));
}

/* Coluna verde */
.hero-left {
    width: 50%; background: var(--green-dark);
    position: relative; display: flex; align-items: center;
    padding: 60px 64px 60px 60px;
    border-radius: 0 0 var(--r-2xl) 0;
    overflow: hidden; z-index: 3; flex-shrink: 0;
}
.hero-left::after {
    content: ''; position: absolute; bottom: -20px; right: -20px;
    width: 300px; height: 300px;
    background: url('https://abcappsiteinsth.azurewebsites.net/media/1711/pattern.svg') no-repeat bottom right / contain;
    opacity: .10; pointer-events: none;
}
.hero-left-content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 28px; width: 100%;
}

/* Coluna canvas */
.hero-right {
    flex: 1; position: relative;
    display: flex; align-items: center; justify-content: flex-end;
    padding: 60px 48px;
    background: var(--black-deep);
    border-radius: 0 0 0 var(--r-2xl);
    z-index: 2; overflow: hidden;
}
.hero-right-inner { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }

/* Títulos hero */
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300; color: var(--white);
    line-height: 1.18; letter-spacing: -.025em;
}
.hero-title-typewriter { font-weight: 300; }
.hero-accent { color: var(--gold); font-weight: inherit; }
.typewriter-caret {
    display: inline-block;
    width: 2px;
    height: .9em;
    margin-left: 6px;
    background: var(--gold);
    vertical-align: -.08em;
    animation: typewriterBlink .85s steps(1) infinite;
}
@keyframes typewriterBlink {
    50% { opacity: 0; }
}
.hero-subtitle { font-size: .96rem; color: rgba(255,255,255,.80); line-height: 1.72; max-width: 400px; }

.hero-cta-wrap { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--white); color: var(--black);
    border-radius: var(--r-sm); padding: 14px 28px;
    font-size: .92rem; font-weight: 700;
    white-space: nowrap; transition: var(--ease); display: inline-block;
}
.btn-hero-primary:hover { background: var(--off-white); box-shadow: var(--shadow-md); }

.btn-hero-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,.65);
    border-radius: var(--r-sm); padding: 13px 28px;
    font-size: .92rem; font-weight: 600;
    white-space: nowrap; transition: var(--ease); display: inline-block;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* Stats */
.hero-stats { display: flex; align-items: center; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); flex-wrap: wrap; }
.hero-stat  { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong { font-size: 1.05rem; font-weight: 700; color: var(--gold); }
.hero-stat span   { font-size: .7rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }
.hero-stat-div    { width: 1px; height: 30px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* Float cards */
.hero-float-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--r-lg);
    padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
    color: var(--white); min-width: 220px;
    animation: floatCard 3s ease-in-out infinite;
}
.hfc-1 { animation-delay: 0s; }
.hfc-2 { animation-delay: .8s; }
.hfc-3 { animation-delay: 1.6s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hfc-icon {
    width: 42px; height: 42px; background: rgba(201,168,76,.18);
    border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.hfc-text { display: flex; flex-direction: column; gap: 2px; }
.hfc-text strong { font-size: .88rem; font-weight: 700; }
.hfc-text span   { font-size: .75rem; color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════ */
.trust-strip  { background: var(--black); padding: 20px 40px; }
.trust-inner  { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; max-width: 1280px; margin: 0 auto; }
.trust-item   { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 600; }
.trust-item i { color: var(--gold); }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════════
   SOBRE NÓS (HIGHLIGHT)
══════════════════════════════════════════════ */
.highlight-section { background: var(--white); padding: 100px 0; }
.highlight-inner   { display: flex; align-items: center; gap: 80px; max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.highlight-image-col { flex: 0 0 auto; width: 420px; }
.highlight-image-wrap { position: relative; width: 100%; }
.highlight-image { width: 100%; height: 420px; object-fit: cover; object-position: center top; border-radius: var(--r-lg); display: block; }

.highlight-numbers-card {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--green-dark); color: var(--white);
    border-radius: var(--r-lg); padding: 20px 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px;
    box-shadow: var(--shadow-lg); min-width: 220px;
}
.hn-item { display: flex; flex-direction: column; gap: 2px; }
.hn-item strong { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.hn-item span   { font-size: .7rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .04em; }

.highlight-text-col { flex: 1; }
.highlight-body     { font-size: .95rem; color: var(--grey-dark); line-height: 1.75; margin-bottom: 16px; }

.about-page-section { padding: 86px 0; }
.about-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 64px;
    align-items: start;
}
.about-page-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--grey-dark);
    font-size: .98rem;
    line-height: 1.82;
}
.about-page-metrics {
    background: var(--green-dark);
    border-radius: var(--r-lg);
    padding: 28px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: calc(var(--nav-h) + 28px);
}
.about-page-metric {
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding-bottom: 16px;
}
.about-page-metric:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.about-page-metric strong {
    display: block;
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}
.about-page-metric span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.75);
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.highlight-pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
.highlight-pillar  { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon {
    width: 40px; height: 40px; background: var(--grey-light);
    border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--green-dark); font-size: 1rem;
}
.highlight-pillar div strong { display: block; font-size: .92rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.highlight-pillar div p      { font-size: .85rem; color: var(--grey-dark); line-height: 1.5; }

/* ══════════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════════ */
.services-section { padding: 80px 0 100px; }
.services-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.partners-section { padding: 48px 0 42px; }
.partners-column {
    margin: 0;
    padding: 28px 0 30px;
    border-top: 1px solid rgba(36, 55, 40, .08);
    border-bottom: 1px solid rgba(36, 55, 40, .08);
    overflow: hidden;
}
.partners-header {
    display: grid;
    grid-template-columns: minmax(180px, .75fr) minmax(240px, 1fr) minmax(260px, 1.4fr);
    gap: 18px;
    align-items: end;
    margin-bottom: 22px;
}
.partners-header .section-label { margin-bottom: 0; }
.partners-header h3 {
    color: #243728;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.15;
}
.partners-header p:last-child {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}
.partners-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partners-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: partners-scroll 34s linear infinite;
}
.partners-carousel:hover .partners-track { animation-play-state: paused; }
.partner-logo-card {
    width: 178px;
    height: 86px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border: 1px solid rgba(36, 55, 40, .1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.partner-logo-card img {
    max-width: 132px;
    max-height: 46px;
    object-fit: contain;
    filter: grayscale(1) saturate(0) contrast(.9);
    opacity: .62;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.partner-logo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 151, 75, .45);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}
.partner-logo-card:hover img {
    filter: grayscale(0) saturate(1) contrast(1);
    opacity: 1;
    transform: scale(1.04);
}
@keyframes partners-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--ease); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.sc-image { height: 180px; background: var(--grey-mid); background-size: cover; background-position: center; }
.sc-bg-1 { background-color: var(--green-dark); background-image: linear-gradient(135deg, #243728, #3a5a3d); }
.sc-bg-2 { background-color: #1a2c4a; background-image: linear-gradient(135deg, #1a2c4a, #2d4a6e); }
.sc-bg-3 { background-color: #4a2c1a; background-image: linear-gradient(135deg, #4a2c1a, #7a4a2d); }
.sc-bg-4 { background-color: #1a4a3a; background-image: linear-gradient(135deg, #1a4a3a, #2d7a5a); }
.sc-bg-5 { background-color: #2c1a4a; background-image: linear-gradient(135deg, #2c1a4a, #4a2d7a); }
.sc-bg-6 { background-color: #3d4a1a; background-image: linear-gradient(135deg, #3d4a1a, #5a6a2d); }

.sc-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.sc-icon { width: 40px; height: 40px; background: var(--grey-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 1rem; }
.sc-body h3 { font-size: 1rem; font-weight: 700; color: var(--black); }
.sc-body p  { font-size: .875rem; color: var(--grey-dark); line-height: 1.6; }
.sc-cta     { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--green-dark); margin-top: 6px; transition: gap .2s ease; }
.sc-cta:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   COMPLIANCE
══════════════════════════════════════════════ */
.compliance-section { padding: 80px 0 100px; background: var(--white); }
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comp-card { background: var(--grey-light); border-radius: var(--r-lg); padding: 32px; transition: var(--ease); border: 1px solid var(--grey-mid); }
.comp-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.comp-icon { width: 48px; height: 48px; background: var(--green-dark); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; }
.comp-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 14px; }
.comp-card ul { list-style: disc; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.comp-card ul li { font-size: .875rem; color: var(--grey-dark); line-height: 1.5; list-style: disc; }

/* ══════════════════════════════════════════════
   ATENDIMENTO
══════════════════════════════════════════════ */
.atendimento-section { padding: 80px 0 100px; }
.atend-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.atend-card { background: var(--white); border-radius: var(--r-lg); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--ease); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.atend-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.atend-icon { width: 52px; height: 52px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; margin-bottom: 6px; }
.atend-card h4 { font-size: .92rem; font-weight: 700; color: var(--black); }
.atend-number  { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }
.atend-card p  { font-size: .8rem; color: var(--grey-dark); }

/* ══════════════════════════════════════════════
   FORMULÁRIO
══════════════════════════════════════════════ */
.forms-section { background: var(--black); padding: 80px 40px; }
.forms-section-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: flex-start; padding: 0 40px;
}

.forms-title-col { color: var(--white); padding-right: 20px; }
.forms-heading { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; color: var(--white); line-height: 1.35; margin-bottom: 16px; letter-spacing: -.02em; }
.forms-desc    { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 32px; }

.forms-contact-list { display: flex; flex-direction: column; gap: 16px; font-style: normal; }
.forms-contact-item { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,.85); }
.forms-contact-item i      { font-size: .9rem; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.forms-contact-item strong { display: block; font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 600; }
.forms-contact-item span   { font-size: .92rem; font-weight: 600; }

.forms-container { width: 100%; max-width: 600px; justify-self: end; }
.forms-box { background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.forms-box h3 { font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 28px; }

/* Form elements */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--grey-dark); text-transform: uppercase; letter-spacing: .05em; }
.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--grey-mid); border-radius: var(--r-sm);
    padding: 12px 14px; font-size: .92rem; font-family: var(--font-sans);
    color: var(--black); background: var(--white); outline: none;
    transition: border-color .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-dark); }
.form-group textarea { resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row .form-group { margin-bottom: 0; }

.form-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.check-label { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--grey-dark); cursor: pointer; line-height: 1.5; }
.check-label input { margin-top: 2px; flex-shrink: 0; }
.check-label a { color: var(--green-dark); text-decoration: underline; }

.form-error   { font-size: .78rem; color: #E74F3E; display: block; min-height: 1em; }
.form-success { display: none; align-items: center; gap: 10px; margin-top: 16px; padding: 16px; background: #E1F3ED; border-radius: var(--r-md); color: #107154; font-size: .9rem; font-weight: 600; }
.form-success i { font-size: 1.2rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer { background: var(--white); }
.footer-section { padding: 48px 40px 32px; max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }

.footer-header-row { display: flex; justify-content: space-between; align-items: center; }
.footer-logo-link  { display: flex; }
.footer-logo-img   { height: 48px; width: auto; object-fit: contain; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: var(--grey-light); display: flex; align-items: center; justify-content: center; color: var(--black); font-size: .9rem; transition: var(--ease); }
.footer-socials a:hover { background: var(--green-dark); color: var(--white); }

.footer-divider { border: none; height: 1px; background: var(--grey-mid); }
.footer-links-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }

.footer-col h5 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--black); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .88rem; color: var(--grey-dark); transition: color .2s ease; }
.footer-col ul li a:hover { color: var(--black); }

.footer-phones { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--grey-mid); }
.footer-phones div   { display: flex; flex-direction: column; gap: 1px; }
.footer-phones small { font-size: .72rem; color: var(--grey-dark); text-transform: uppercase; letter-spacing: .05em; }
.footer-phones strong { font-size: .9rem; color: var(--black); }

.footer-lang { display: flex; flex-direction: column; gap: 8px; }
.lang-btn { background: none; border: 1px solid var(--grey-mid); border-radius: var(--r-sm); padding: 8px 12px; font-size: .85rem; color: var(--grey-dark); text-align: left; transition: var(--ease); }
.lang-btn.active            { background: var(--black); color: var(--white); border-color: var(--black); }
.lang-btn:hover:not(.active){ border-color: var(--black); color: var(--black); }

.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-row p { font-size: .82rem; color: var(--grey-dark); }

.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: .82rem; color: var(--grey-dark); transition: color .2s ease; }
.footer-legal-links a:hover { color: var(--black); }

/* ══════════════════════════════════════════════
   LGPD BANNER
══════════════════════════════════════════════ */
.lgpd-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--black); color: var(--white);
    z-index: 10000; padding: 16px 32px;
    display: none; border-top: 2px solid var(--gold);
}
.lgpd-banner.show { display: block; }

.lgpd-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.lgpd-text p { font-size: .88rem; line-height: 1.6; }
.lgpd-link   { color: var(--gold); text-decoration: underline; }
.lgpd-actions { display: flex; gap: 10px; flex-shrink: 0; }

.lgpd-btn-accept { background: var(--gold); color: var(--black); border-radius: var(--r-sm); padding: 9px 18px; font-size: .85rem; font-weight: 700; transition: var(--ease); }
.lgpd-btn-accept:hover { background: var(--gold-dark); }
.lgpd-btn-reject { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--r-sm); padding: 8px 18px; font-size: .85rem; font-weight: 600; transition: var(--ease); }
.lgpd-btn-reject:hover { border-color: var(--white); }
.lgpd-btn-config { background: transparent; color: rgba(255,255,255,.7); padding: 8px 12px; font-size: .82rem; text-decoration: underline; }

.lgpd-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9998; display: none; }
.lgpd-overlay.show { display: block; }

.lgpd-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--white); border-radius: var(--r-lg); z-index: 9999; width: 90%; max-width: 480px; display: none; box-shadow: var(--shadow-lg); }
.lgpd-modal.show { display: block; }

.lgpd-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--grey-mid); }
.lgpd-modal-header h2 { font-size: 1.1rem; font-weight: 700; }
.lgpd-modal-close { color: var(--grey-dark); font-size: 1rem; padding: 4px; }

.lgpd-modal-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; }
.lgpd-modal-body > p { font-size: .88rem; color: var(--grey-dark); }

.cookie-toggle-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--grey-light); }
.cookie-toggle-item strong { font-size: .9rem; color: var(--black); display: block; }
.cookie-toggle-item p { font-size: .8rem; color: var(--grey-dark); }
.cookie-toggle-item input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green-dark); }

.lgpd-modal-footer { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 28px; border-top: 1px solid var(--grey-mid); }

/* ══════════════════════════════════════════════
   MODAIS LEGAIS
══════════════════════════════════════════════ */
.legal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9000; display: none; }
.legal-overlay.show { display: block; }

.legal-modal { position: fixed; top: 0; right: -100%; bottom: 0; width: min(480px, 90vw); background: var(--white); z-index: 9001; overflow-y: auto; border-radius: 24px 0 0 24px; transition: right .35s ease; box-shadow: var(--shadow-lg); }
.legal-modal.open { right: 0; }

.legal-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 28px 32px; border-bottom: 1px solid var(--grey-mid); position: sticky; top: 0; background: var(--white); z-index: 1; }
.legal-modal-header h2 { font-size: 1.1rem; font-weight: 700; }
.legal-modal-close { font-size: 1.1rem; color: var(--grey-dark); padding: 6px; border-radius: var(--r-sm); transition: var(--ease); }
.legal-modal-close:hover { background: var(--grey-light); }

.legal-modal-body { padding: 28px 32px; }
.legal-intro           { font-size: .8rem; color: var(--grey-dark); margin-bottom: 20px; }
.legal-modal-body h3   { font-size: .95rem; font-weight: 700; color: var(--black); margin: 20px 0 8px; }
.legal-modal-body p    { font-size: .88rem; color: var(--grey-dark); line-height: 1.7; }

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.wa-float-wrap { position: fixed; bottom: 32px; right: 32px; z-index: 8000; }

.wa-float-btn {
    width: 56px; height: 56px; background: #25D366; color: var(--white);
    border-radius: 50%; font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--ease);
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

.wa-modal { position: fixed; bottom: 100px; right: 32px; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 320px; z-index: 7999; overflow: hidden; display: none; }
.wa-modal.open { display: block; animation: flyoutIn .2s ease; }

.wa-modal-header { background: #25D366; color: var(--white); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.wa-modal-title  { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .95rem; }
.wa-modal-close  { color: var(--white); font-size: .9rem; padding: 4px; opacity: .8; transition: opacity .2s; }
.wa-modal-close:hover { opacity: 1; }

.wa-modal-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.wa-modal-body p { font-size: .88rem; color: var(--grey-dark); }

.wa-phone-input { border: 1.5px solid var(--grey-mid); border-radius: var(--r-sm); padding: 10px 14px; font-size: .9rem; font-family: var(--font-sans); width: 100%; outline: none; transition: border-color .2s ease; }
.wa-phone-input:focus { border-color: #25D366; }

.wa-success         { display: flex; align-items: center; gap: 8px; color: #107154; font-size: .88rem; font-weight: 600; }
.wa-success[hidden] { display: none; }

/* ══════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════ */
.back-to-top {
    position: fixed; bottom: 32px; right: 100px;
    width: 44px; height: 44px; background: var(--black); color: var(--white);
    border-radius: 50%; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: var(--ease);
    z-index: 7000; box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover   { background: var(--green-dark); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .highlight-inner       { gap: 48px; }
    .highlight-image-col   { width: 340px; }
    .services-grid         { grid-template-columns: repeat(2, 1fr); }
    .atend-grid            { grid-template-columns: repeat(2, 1fr); }
    .partners-header       { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 900px) {
    .comp-grid         { grid-template-columns: 1fr 1fr; }
    .footer-links-row  { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile: breakpoint 768px ── */
@media (max-width: 768px) {
    :root { --nav-h: 68px; }

    /* Navbar */
    .menu-section { padding: 16px 20px; }
    .menu-links-container { display: none; }       /* flyouts desktop ocultos */
    .menu-logo-img  { height: 36px; }
    .hide-mobile    { display: none !important; }  /* ocultar botões desktop */
    .show-mobile    { display: flex !important; }  /* mostrar hamburger */
    .hamburger-btn  { display: flex; }

    /* Flyouts desktop: nunca aparecem no mobile */
    .flyout-menu-section { display: none !important; }

    /* Hero */
    .hero-section  { padding-top: var(--nav-h); }
    .hero-split    { flex-direction: column; min-height: auto; }
    .hero-left     { width: 100%; padding: 48px 24px 56px; border-radius: 0 0 var(--r-xl) 0; }
    .hero-right    { display: none; }
    .hero-title    { font-size: 2rem; }
    .hero-subtitle { max-width: 100%; }
    .hero-cta-wrap { flex-direction: column; }
    .btn-hero-primary,
    .btn-hero-outline { width: 100%; text-align: center; display: block; }
    .hero-stats    { flex-wrap: wrap; gap: 14px; }

    /* Trust */
    .trust-strip   { padding: 16px 20px; }
    .trust-inner   { gap: 16px; justify-content: flex-start; }
    .trust-divider { display: none; }

    /* Highlight */
    .highlight-section { padding: 64px 0; }
    .highlight-inner   { flex-direction: column; gap: 60px; padding: 0 20px; }
    .highlight-image-col  { width: 100%; }
    .highlight-image      { height: 280px; }
    .highlight-numbers-card { position: static; margin-top: 20px; width: 100%; }
    .about-page-section { padding: 64px 0; }
    .about-page-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-page-metrics { position: static; grid-template-columns: 1fr 1fr; }

    /* Services */
    .services-section { padding: 64px 0; }
    .partners-section { padding: 42px 0 34px; }
    .section-container { padding: 0 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .partners-column { padding: 24px 0; }
    .partners-header h3 { font-size: 24px; }
    .partner-logo-card { width: 150px; height: 76px; padding: 15px 20px; }
    .partner-logo-card img { max-width: 112px; max-height: 38px; }

    /* Compliance */
    .compliance-section { padding: 64px 0; }
    .comp-grid { grid-template-columns: 1fr; }

    /* Atendimento */
    .atendimento-section { padding: 64px 0; }
    .atend-grid { grid-template-columns: 1fr 1fr; }

    /* Forms */
    .forms-section       { padding: 64px 20px; }
    .forms-section-inner { grid-template-columns: 1fr; gap: 40px; padding: 0; }
    .forms-title-col     { padding-right: 0; }
    .forms-container     { max-width: 100%; justify-self: auto; }
    .forms-box           { padding: 24px 20px; }
    .form-row            { grid-template-columns: 1fr; }

    /* Footer */
    .footer-section      { padding: 40px 20px 24px; }
    .footer-header-row   { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-links-row    { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom-row   { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-legal-links  { flex-wrap: wrap; gap: 16px; }

    /* LGPD */
    .lgpd-banner { padding: 16px 20px; }
    .lgpd-inner  { flex-direction: column; align-items: flex-start; gap: 16px; }

    /* WA / Back */
    .wa-float-wrap { bottom: 20px; right: 20px; }
    .wa-modal      { right: 16px; left: 16px; width: auto; bottom: 90px; }
    .back-to-top   { display: none; }
}

@media (max-width: 480px) {
    .atend-grid       { grid-template-columns: 1fr; }
    .footer-links-row { grid-template-columns: 1fr; }
    .about-page-metrics { grid-template-columns: 1fr; }
}
