/* ===========================
   BORLD TRADE CI — Stylesheet
=========================== */

:root {
  --navy: #06264a;
  --blue-dark: #0a3d73;
  --blue: #0b5ea8;
  --blue-light: #3f92d2;
  --sky: #eaf4fd;
  --yellow: #ffc93c;
  --yellow-dark: #f2a91a;
  --ink: #142434;
  --gray: #5b6b7a;
  --gray-light: #eef2f6;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 40px -20px rgba(6, 38, 74, 0.25);
  --shadow-sm: 0 8px 20px -10px rgba(6, 38, 74, 0.2);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
}

h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
p { color: var(--gray); }
.lead { font-size: 1.1rem; color: var(--ink); font-weight: 500; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 10px 25px -8px rgba(255, 201, 60, 0.6);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* ===== Top bar ===== */
.topbar {
  background: var(--navy);
  color: #cfe3f7;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 8px 24px;
}
.topbar-item { display: flex; align-items: center; gap: 8px; }
.topbar-item a { color: #cfe3f7; }
.topbar-item a:hover { color: var(--yellow); }
.topbar-loc { margin-right: auto; }
.topbar-social { display: flex; gap: 14px; margin-left: auto; }
.topbar-social a {
  width: 26px; height: 26px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  transition: background 0.2s;
}
.topbar-social a:hover { background: var(--yellow); color: var(--navy); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(6,38,74,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-head); color: var(--navy); font-size: 1rem; letter-spacing: 0.5px; }
.brand-text small { color: var(--gray); font-size: 0.7rem; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--yellow-dark);
  transition: width 0.25s;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, var(--blue-dark), var(--navy) 65%);
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.18;
}
.shape-1 { width: 500px; height: 500px; background: var(--blue-light); top: -180px; right: -140px; }
.shape-2 { width: 380px; height: 380px; background: var(--yellow); bottom: -200px; left: -120px; opacity: 0.12; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--yellow); }
.hero-copy p { color: #cfe3f7; font-size: 1.05rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats { display: flex; gap: 40px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.8rem; color: var(--yellow); }
.hero-stats span { font-size: 0.82rem; color: #b9d3ec; }

.hero-art { position: relative; height: 400px; }
.hero-globe {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(63,146,210,0.35), rgba(255,255,255,0.05));
  border: 1px dashed rgba(255,255,255,0.3);
  display: grid; place-items: center;
  animation: spin 30s linear infinite;
}
.hero-globe i { font-size: 5.5rem; color: rgba(255,255,255,0.85); animation: spin-rev 30s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  animation: float 5s ease-in-out infinite;
}
.hero-card i { color: var(--yellow); font-size: 1.2rem; }
.card-plane { top: 10px; left: 0; animation-delay: 0s; }
.card-ship { bottom: 40px; left: 10px; animation-delay: 1.2s; }
.card-truck { top: 60px; right: 0; animation-delay: 2.4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== Strip ===== */
.strip { background: var(--sky); border-bottom: 1px solid #dbe9f7; }
.strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.strip-inner div { display: flex; align-items: center; gap: 8px; }
.strip-inner i { color: var(--yellow-dark); }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--sky); }
.section-dark {
  background: linear-gradient(160deg, var(--navy), var(--blue-dark));
  color: #fff;
}
.section-dark h2, .section-dark h4 { color: #fff; }
.section-dark p { color: #c6dcf2; }

.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head .lead { color: inherit; }

.tag {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.tag-light { background: rgba(255,255,255,0.12); color: var(--yellow); }

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

.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.check-list i { color: var(--blue); }

/* Mission/Vision cards */
.mmv-stack { display: flex; flex-direction: column; gap: 24px; }
.mmv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--yellow);
}
.mmv-icon {
  width: 50px; height: 50px;
  background: var(--sky);
  color: var(--blue);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

/* Values */
.values { margin-top: 70px; text-align: center; }
.values-title { font-size: 1.5rem; margin-bottom: 30px; }
.values-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 150px;
  padding: 26px 16px;
  border-radius: var(--radius);
  background: var(--sky);
  transition: transform 0.25s, background 0.25s;
}
.value-item:hover { transform: translateY(-6px); background: var(--blue); }
.value-item:hover i, .value-item:hover span { color: #fff; }
.value-item i { font-size: 1.8rem; color: var(--blue); }
.value-item span { font-weight: 700; font-size: 0.88rem; color: var(--navy); }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 22px;
  transition: transform 0.25s, background 0.25s;
}
.feature-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.1); }
.feature-icon {
  width: 54px; height: 54px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; }

/* Services */
.services-list { display: flex; flex-direction: column; gap: 70px; margin-top: 20px; }
.service-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.service-row.reverse { grid-template-columns: 1.2fr 0.8fr; }
.service-row.reverse .service-media { order: 2; }
.service-row.reverse .service-copy { order: 1; }

.service-media {
  height: 260px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-media i { font-size: 5rem; color: #fff; z-index: 1; }
.media-air { background: linear-gradient(135deg, #3f92d2, #0b5ea8); }
.media-sea { background: linear-gradient(135deg, #0a3d73, #06264a); }
.media-land { background: linear-gradient(135deg, #f2a91a, #ffc93c); }
.media-land i { color: var(--navy); }
.media-advisory { background: linear-gradient(135deg, #0b5ea8, #06264a); }

.service-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--sky);
  -webkit-text-stroke: 1.5px var(--blue-light);
  display: block;
  margin-bottom: 6px;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 50px;
}
.pill-list i { color: var(--yellow-dark); }

/* Cargo */
.cargo-block { margin-bottom: 50px; }
.cargo-subtitle {
  font-size: 1.15rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.cargo-subtitle.centered { justify-content: center; }
.cargo-subtitle i { color: var(--yellow-dark); }
.cargo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cargo-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cargo-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}
.cargo-card:hover { transform: translateY(-6px); }
.cargo-icon {
  width: 50px; height: 50px;
  background: var(--sky);
  color: var(--blue);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.cargo-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.cargo-card p { font-size: 0.88rem; margin-bottom: 12px; }
.cargo-examples {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  border-top: 1px dashed #dbe9f7;
  padding-top: 10px;
}

.packaging { text-align: center; }
.packaging-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.packaging-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.packaging-tags i { color: var(--yellow-dark); }

/* Comercio exterior */
.topics-card {
  background: var(--sky);
  border-radius: var(--radius);
  padding: 34px;
}
.topics-list { display: flex; flex-direction: column; gap: 14px; counter-reset: topic; }
.topics-list li {
  position: relative;
  padding-left: 40px;
  font-weight: 600;
  color: var(--navy);
  counter-increment: topic;
}
.topics-list li::before {
  content: counter(topic);
  position: absolute;
  left: 0; top: -2px;
  width: 26px; height: 26px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.78rem;
  font-family: var(--font-head);
}

.benefits { margin-top: 70px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.benefit-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
}
.benefit-item p { font-size: 0.9rem; color: var(--ink); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--blue), var(--blue-dark));
  padding: 50px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; margin-bottom: 6px; }
.cta-inner p { color: #cfe3f7; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: var(--sky);
  color: var(--blue);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.contact-item strong { display: block; color: var(--navy); font-size: 0.85rem; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: var(--gray); font-weight: 500; }
.contact-socials { display: flex; gap: 14px; margin-top: 10px; }
.contact-socials a {
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.contact-socials a:hover { background: var(--navy); transform: translateY(-3px); }

.contact-form {
  background: var(--sky);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #cfe0ef;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,94,168,0.15);
}
.form-note { text-align: center; margin-top: 14px; font-size: 0.85rem; font-weight: 600; color: var(--blue-dark); min-height: 1em; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 340px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.footer { background: var(--navy); color: #cfe3f7; padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: #9fbcdb; }
.footer-brand p { margin: 18px 0; font-size: 0.88rem; color: #9fbcdb; max-width: 320px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--yellow); color: var(--navy); }

.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { color: #9fbcdb; font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #8aa8c7;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px -8px rgba(37,211,102,0.7);
  z-index: 200;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Reveal animation (progressive enhancement: hidden only once JS confirms it can reveal it) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js [data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .cargo-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .topbar-loc { display: none; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 99;
  }
  .nav.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-art { display: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-media, .service-row.reverse .service-copy { order: unset; }
  .service-media { height: 200px; }
  .cargo-grid, .cargo-grid-4 { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .cargo-grid, .cargo-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
  .footer-col a, .footer-col span { justify-content: center; }
  .values-grid { gap: 14px; }
  .value-item { width: 130px; padding: 20px 12px; }
}
