:root {
  /* PALETA (tus colores) */
  --g-main: #04a404;
  --g-main-dark: #049221;
  --g-soft: #44ac04;
  --g-soft-2: #049c04;
  --g-soft-3: #049410;
  --g-soft-4: #049c0c;
  --y-main: #fcc904;
  --y-soft: #ccc404;

  --text-main: #101810;
  --text-muted: #5c6b5f;
  --bg-page: #f4fff6;
  --bg-section: #f8fff9;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.09);

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(
    circle at top left,
    #ffffff 0,
    var(--bg-page) 45%,
    #ebffe6 90%
  );
  color: var(--text-main);
  line-height: 1.7;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 90px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b150b;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 15px;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.brand-text span:last-child {
  color: var(--g-main-dark);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  position: relative;
  color: var(--text-muted);
  padding-bottom: 3px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g-main), var(--y-main));
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--g-main-dark);
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.btn-outline {
  border-radius: 999px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn {
  background: linear-gradient(135deg, var(--g-main), var(--y-main));
  color: #fff;
  box-shadow: 0 14px 34px rgba(4, 164, 4, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(4, 146, 33, 0.4);
}

.btn-outline {
  border-color: rgba(4, 146, 33, 0.4);
  background: #f5fff5;
  color: var(--g-main-dark);
}

.btn-outline:hover {
  background: #eaffea;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #222;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #222;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  bottom: -5px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* MAIN */

main {
  padding-top: 74px;
}

/* HERO / INICIO */

.hero {
  background: radial-gradient(
      circle at right top,
      rgba(252, 201, 4, 0.55),
      transparent 55%
    ),
    radial-gradient(
      circle at left bottom,
      rgba(4, 156, 4, 0.45),
      transparent 55%
    );
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 11px;
  border-radius: 999px;
  display: inline-flex;
  color: #0b2c10;
  border: 1px solid rgba(4, 156, 4, 0.14);
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(4, 146, 33, 0.1);
  color: #053312;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--y-main);
}

.hero-text {
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--text-main);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
}

.hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(4, 146, 33, 0.18);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-note {
  font-size: 14px;
  color: var(--text-muted);
}

/* Panel tasas */

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 32px;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(4, 146, 33, 0.08);
  backdrop-filter: blur(10px);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hero-card-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #3c4a3e;
}

.hero-chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 14px;
  background: #fdf5d0;
  border: 1px solid rgba(252, 201, 4, 0.6);
  color: #876800;
}

.hero-rates-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f9fff4, #fef9e0);
  border: 1px solid rgba(4, 146, 33, 0.08);
  font-size: 14px;
}

.hero-rate-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-rate-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: radial-gradient(circle at top, var(--y-main), var(--g-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.hero-rate-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-rate-label small {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-rate-value {
  font-weight: 700;
  color: var(--g-main);
}

.hero-ticker {
  border-radius: 15px;
  padding: 6px 10px;
  background: #f5fff1;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-ticker span.label {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(4, 156, 4, 0.1);
  color: var(--g-main-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

/* Mini stats debajo del hero */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.hero-stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hero-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-soft-2), var(--g-soft-4));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.hero-stat-text b {
  font-size: 16px;
  color: var(--g-main-dark);
}

/* QUIÉNES SOMOS */

.about {
  background: linear-gradient(180deg, #f9fff8, #ffffff);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
}

.about-kicker {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--g-main-dark);
  margin-bottom: 8px;
}

.about-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-title span {
  color: var(--g-main);
}

.about-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pill {
  font-size: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ecffe8;
  color: var(--g-main-dark);
  border: 1px solid rgba(4, 146, 33, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.about-panel {
  background: radial-gradient(circle at top left, #ffffff, #f8ffe9);
  border-radius: var(--radius-lg);
  padding: 22px 20px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(4, 146, 33, 0.16);
}

.about-panel-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.about-panel-item span.icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(4, 156, 4, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-main-dark);
  font-size: 15px;
}

.about-panel-footer {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

/* SERVICIOS */

.services {
  background: radial-gradient(
    circle at top right,
    rgba(252, 201, 4, 0.24),
    #f8fff9
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(4, 146, 33, 0.12);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 201, 4, 0.6), transparent 70%);
  right: -30px;
  bottom: -40px;
  opacity: 0.7;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  /* background: linear-gradient(135deg, var(--g-soft-2), var(--g-soft-4)); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-icon img {
  width: 50px;
  height: 50px;
  display: block;
}

.service-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #122212;
}

/* GALERÍA */

.gallery {
  background: linear-gradient(180deg, #ffffff, #f8fff6);
}

.gallery-wrapper {
  margin-top: 40px;
}

.gallery-track {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.gallery-item {
  position: relative;
  min-width: calc(33.333% - 14.66px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 260px;
  max-height: 260px;
  flex-shrink: 0;
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.08),
    transparent
  );
  z-index: 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 600;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cce6cc;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-dot.active {
  background: var(--g-main);
  transform: scale(1.3);
}

/* OFICINAS FUTURISTAS */

.offices {
  background: radial-gradient(circle at top left, #fcc90455, transparent 55%),
    radial-gradient(circle at bottom right, #04a40455, transparent 55%),
    linear-gradient(180deg, #f9fff4, #ffffff);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.office-card {
  position: relative;
  border-radius: 26px;
  padding: 24px 22px 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(4, 146, 33, 0.18);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #04a40425, transparent);
  opacity: 0.5;
  pointer-events: none;
}

.office-card.accent::before {
  background: linear-gradient(120deg, transparent, #fcc90435, transparent);
}

.office-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.office-badge {
  font-size: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #e8ffe8;
  color: var(--g-main-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.office-icon {
  font-size: 28px;
}

.office-title {
  font-size: 20px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.office-location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.office-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.office-info strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #667567;
  margin-bottom: 3px;
}

.office-info span {
  display: block;
}

.office-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.office-tag {
  padding: 6px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f1ffe8);
  border: 1px solid rgba(4, 156, 4, 0.35);
  font-size: 14px;
}

.office-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #0d2f1a;
  position: relative;
  z-index: 1;
}

/* CONTACTO */

.contact {
  background: linear-gradient(135deg, var(--g-main), var(--g-soft-3));
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: center;
}

.contact-title {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-text {
  font-size: 14px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-list {
  list-style: none;
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-list li {
  margin-bottom: 6px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-group label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
  border-radius: 999px;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.98);
  color: #222;
}

.form-group textarea {
  border-radius: 12px;
  resize: vertical;
  min-height: 70px;
}

.contact-note {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
}

/* FLOATING WHATSAPP */

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 60;
}

.whatsapp-fab:hover {
  transform: translateY(-1px);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 10px;
  }

  .nav-open .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .services-grid,
  .hero-stats,
  .offices-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    gap: 16px;
  }

  .hero {
    padding-top: 80px;
  }

  .gallery-item {
    min-width: 80%;
    height: 220px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-stats {
    margin-top: 26px;
  }
}
/* ===================================================== */
/* ✅ MOBILE FIX DEFINITIVO (iPhone / Android REAL) */
/* ===================================================== */

@media (max-width: 900px) {
  /* ----- Layout general ----- */
  section {
    padding: 64px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* ----- HERO ----- */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-tags {
    gap: 6px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 5px 9px;
  }

  /* Panel de tasas */
  .hero-card {
    border-radius: 20px;
    padding: 16px 14px;
  }

  .hero-rate {
    font-size: 13px;
    padding: 8px;
  }

  .hero-rate-icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  /* ----- STATS ----- */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-stat-card {
    padding: 12px;
    font-size: 13px;
  }

  /* ----- QUIÉNES SOMOS ----- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-panel {
    padding: 16px;
    border-radius: 20px;
  }

  /* ----- SERVICIOS ----- */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 16px;
  }

  .service-icon img {
    width: 34px;
    height: 34px;
  }

  .service-title {
    font-size: 14px;
  }

  /* ----- GALERÍA ----- */
  .gallery-track {
    gap: 14px;
  }

  .gallery-item {
    min-width: 92%;
    height: 200px;
    border-radius: 18px;
  }

  .gallery-label {
    font-size: 13px;
  }

  /* ----- OFICINAS ----- */
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .office-card {
    padding: 16px;
    border-radius: 20px;
  }

  .office-title {
    font-size: 18px;
  }

  .office-info {
    grid-template-columns: 1fr; /* 🔑 CLAVE */
    gap: 10px;
  }

  .office-info strong {
    font-size: 12px;
  }

  /* ----- CONTACTO ----- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-text {
    font-size: 14px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ===================================================== */
/* ✅ MOBILE PEQUEÑO (≤ 480px) */
/* ===================================================== */

@media (max-width: 480px) {
  .hero-title {
    font-size: 23px;
  }

  .section-title {
    font-size: 22px;
  }

  .hero-stat-text b {
    font-size: 14px;
  }

  .office-footer {
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
  }
}
/* ===================================================== */
/* ✅ DESKTOP WIDE (más presencia visual) */
/* ===================================================== */

@media (min-width: 1280px) {
  .container {
    max-width: 1380px; /* +180px visuales */
  }

  .hero-grid {
    gap: 60px;
  }

  .about-grid {
    gap: 60px;
  }

  .services-grid {
    gap: 26px;
  }

  .offices-grid {
    gap: 40px;
  }
}
