:root {
  --bg: #090909;
  --bg-soft: #111111;
  --bg-card: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --white: #f7f2ec;
  --text: #f3ede7;
  --muted: #c7b8aa;
  --orange: #ff7a1a;
  --orange-2: #ff9b3d;
  --red: #a92f12;
  --red-2: #d2461c;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1240px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(255, 122, 26, 0.12),
      transparent 22%
    ),
    radial-gradient(circle at 80% 10%, rgba(210, 70, 28, 0.12), transparent 24%),
    linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(
      circle at 20% 20%,
      #fff 0.5px,
      transparent 1px
    ),
    radial-gradient(circle at 80% 60%, #fff 0.5px, transparent 1px),
    radial-gradient(circle at 40% 80%, #fff 0.5px, transparent 1px);
  background-size: 180px 180px, 220px 220px, 260px 260px;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(255, 122, 26, 0.45);
  left: -120px;
  top: 120px;
}

.bg-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(210, 70, 28, 0.35);
  right: -80px;
  top: 360px;
}

/* HERO ---------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0 60px;
  background: linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.94) 0%,
      rgba(5, 5, 5, 0.88) 30%,
      rgba(5, 5, 5, 0.6) 58%,
      rgba(5, 5, 5, 0.78) 100%
    ),
    url(/static/img/hero.png) center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 12% 28%,
      rgba(255, 122, 26, 0.12),
      transparent 22%
    ),
    radial-gradient(circle at 85% 18%, rgba(210, 70, 28, 0.1), transparent 24%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 520px);
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.hero-left {
  max-width: 620px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.18);
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.hero-left h1 {
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -2px;
  max-width: 580px;
  margin-bottom: 20px;
  color: #fff7f0;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 1.06rem;
  line-height: 1.8;
  color: #e5d5c7;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #151515 0%, #1c1c1c 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.34);
}

.btn-whatsapp:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.btn-ml {
  background: linear-gradient(135deg, #ffb22d 0%, #ff7d1c 100%);
  color: #291100;
  box-shadow: 0 16px 35px rgba(255, 122, 26, 0.26);
}

.btn-community,
.btn-primary-dark {
  background: linear-gradient(135deg, #cc4218 0%, #8f220d 100%);
  color: #fff3eb;
  box-shadow: 0 20px 48px rgba(170, 52, 17, 0.28);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-chip {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4e8dd;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
}

.hero-card {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-left {
  width: 170px;
  height: 250px;
  left: 40px;
  bottom: 40px;
  transform: rotate(-7deg);
  z-index: 1;
}

.hero-card-center {
  width: 260px;
  height: 390px;
  left: 130px;
  top: 25px;
  z-index: 3;
}

.hero-card-right {
  width: 150px;
  height: 230px;
  right: 0;
  bottom: 30px;
  transform: rotate(8deg);
  z-index: 2;
}
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    gap: 30px;
  }

  .hero-left h1 {
    font-size: clamp(2.5rem, 4.2vw, 4.2rem);
    max-width: 540px;
  }

  .hero-visual {
    max-width: 460px;
    height: 460px;
  }

  .hero-card-center {
    width: 230px;
    height: 350px;
    left: 118px;
  }

  .hero-card-left {
    width: 155px;
    height: 220px;
    left: 28px;
  }

  .hero-card-right {
    width: 140px;
    height: 205px;
  }
}
/* HERO */
/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10px 0 70px;
  background: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.78) 0%,
      rgba(5, 5, 5, 0.62) 30%,
      rgba(5, 5, 5, 0.72) 100%
    ),
    url("/static/img/hero.png") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 25%,
      rgba(255, 122, 26, 0.1),
      transparent 24%
    ),
    radial-gradient(circle at 80% 20%, rgba(210, 70, 28, 0.1), transparent 22%),
    linear-gradient(to top, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-left {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.18);
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-left h1 {
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -2px;
  max-width: 780px;
  margin-bottom: 20px;
  color: #fff7f0;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #ead8ca;
  max-width: 700px;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #d8c7ba;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #151515 0%, #1c1c1c 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.34);
}

.btn-whatsapp:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.btn-ml {
  background: linear-gradient(135deg, #ffb22d 0%, #ff7d1c 100%);
  color: #291100;
  box-shadow: 0 16px 35px rgba(255, 122, 26, 0.26);
}

.btn-community,
.btn-primary-dark {
  background: linear-gradient(135deg, #cc4218 0%, #8f220d 100%);
  color: #fff3eb;
  box-shadow: 0 20px 48px rgba(170, 52, 17, 0.28);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.feature-chip {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4e8dd;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
    background-position: center;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-left {
    max-width: 100%;
    padding-inline: 18px;
  }

  .hero-left h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    letter-spacing: -1.4px;
    max-width: 680px;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-text {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 105px 0 65px;
  }

  .hero-left {
    padding-inline: 16px;
  }

  .hero-left h1 {
    font-size: 2.25rem;
    line-height: 1.02;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    margin-bottom: 18px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .hero-features {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .feature-chip {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 96px 0 55px;
  }

  .hero-left {
    padding-inline: 18px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  .hero-left h1 {
    font-size: 1.95rem;
    line-height: 1.03;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-text {
    font-size: 0.91rem;
    line-height: 1.65;
  }

  .btn {
    min-height: 52px;
    font-size: 0.92rem;
    border-radius: 14px;
  }

  .feature-chip {
    font-size: 0.88rem;
    border-radius: 14px;
  }
}
/* COMMUNITY */
.community {
  padding-top: 50px;
}

.community-box {
  text-align: center;
  padding: 54px 28px;
  border-radius: 30px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.015)
    ),
    radial-gradient(circle at center, rgba(255, 122, 26, 0.11), transparent 45%);
  border: 1px solid rgba(255, 122, 26, 0.14);
  box-shadow: var(--shadow);
}

.community-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.community-box p {
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* HEADINGS */
.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.about-content h2,
.location-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}

.section-head p,
.about-content p,
.location-info p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.section-head-center {
  text-align: center;
}

/* =========================================================
   CATEGORÍAS VMC DINÁMICAS
========================================================= */

.vmc-cats-slider {
  position: relative;
  width: 100%;
  margin-top: 14px;
}

.vmc-cats-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.vmc-cats-slider__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.vmc-cats-slide {
  min-width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 46px clamp(22px, 5vw, 72px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vmc-cats-slide__content {
  width: min(100%, 620px);
}

.vmc-cats-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.22);
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.vmc-cats-slide__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -1.8px;
  color: #fff7f0;
  text-wrap: balance;
}

.vmc-cats-slide__text {
  max-width: 560px;
  margin: 0 0 24px;
  color: #e6d7cb;
  font-size: 1rem;
  line-height: 1.85;
}

.vmc-cats-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vmc-cats-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease,
    border-color 0.25s ease;
}

.vmc-cats-slide__btn:hover {
  transform: translateY(-2px);
}

.vmc-cats-slide__btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--red-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 122, 26, 0.22);
}

.vmc-cats-slide__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff7f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vmc-cats-slide__btn--disabled {
  background: rgba(255, 255, 255, 0.06);
  color: #d7c7ba;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
}

.vmc-cats-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.62);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease,
    border-color 0.25s ease;
}

.vmc-cats-slider__nav:hover {
  background: rgba(255, 122, 26, 0.16);
  border-color: rgba(255, 122, 26, 0.28);
}

.vmc-cats-slider__nav--prev {
  left: 18px;
}

.vmc-cats-slider__nav--next {
  right: 18px;
}

.vmc-cats-all {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.vmc-cats-all__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #cc4218 0%, #8f220d 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 20px 42px rgba(170, 52, 17, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vmc-cats-all__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(170, 52, 17, 0.28);
}

.vmc-cats-empty {
  margin-top: 18px;
}

.vmc-cats-empty__card {
  text-align: center;
  padding: 54px 24px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.vmc-cats-empty__card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  color: #fff7f0;
}

.vmc-cats-empty__card p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--muted);
  line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .vmc-cats-slide {
    min-height: 470px;
    padding: 34px 20px;
  }

  .vmc-cats-slide__title {
    font-size: 2.3rem;
    line-height: 1;
  }

  .vmc-cats-slider__nav {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }

  .vmc-cats-slider__nav--prev {
    left: 10px;
  }

  .vmc-cats-slider__nav--next {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .vmc-cats-slide {
    min-height: 430px;
    padding: 28px 18px;
    align-items: flex-end;
  }

  .vmc-cats-slide__title {
    font-size: 2rem;
  }

  .vmc-cats-slide__text {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .vmc-cats-slide__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vmc-cats-slide__btn,
  .vmc-cats-all__btn {
    width: 100%;
  }

  .vmc-cats-slider__nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .vmc-cats-slider__nav--prev {
    left: 16px;
  }

  .vmc-cats-slider__nav--next {
    right: 16px;
  }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.about-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-content {
  padding-right: 20px;
}

.about-content p {
  margin-bottom: 16px;
}

/* CLIENTS */
.clients-carousel {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 14px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.client-card {
  flex: 0 0 calc((100% - 36px) / 3);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #101010;
}

.client-card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.client-card:hover img {
  transform: scale(1.04);
}

.carousel-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--orange), var(--red-2));
  color: #fff;
  transform: scale(1.04);
}

.carousel-dots {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.carousel-dots button.active {
  width: 28px;
  background: linear-gradient(90deg, var(--orange), var(--red-2));
}

/* LOCATION */
/* =========================
   LOCATION SECTION VMC
========================= */

.location {
  padding: 80px 0;
}

/* GRID PRINCIPAL */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* 👈 mapa más grande */
  gap: 48px;
  align-items: stretch; /* 👈 hace que el mapa crezca */
}

/* =========================
   INFO IZQUIERDA
========================= */

.location-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-info h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  color: #fff;
}

.location-info p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

/* =========================
   CARDS
========================= */

.info-card {
  margin-top: 12px;
  padding: 18px 20px;
  border-radius: 16px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.25s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 26, 0.35);
}

/* TITULO CARD */
.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--orange-2);
}

/* TEXTO CARD */
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================
   MAPA
========================= */

.location-map {
  width: 100%;
  height: 100%;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 500px; /* 👈 mapa grande */

  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* IFRAME FULL */
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;

  filter: grayscale(1) contrast(1.1) brightness(0.85);
  transition: 0.3s ease;
}

/* HOVER MAPA */
.map-embed:hover iframe {
  filter: grayscale(0) contrast(1.05) brightness(1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .location-info {
    text-align: center;
    align-items: center;
  }

  .location-info p {
    max-width: 100%;
  }

  .info-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .location {
    padding: 60px 0;
  }

  .location-info h2 {
    font-size: 1.8rem;
  }

  .map-embed {
    min-height: 320px;
  }
}
/* =========================
   FOOTER VMC CENTRADO TOTAL
========================= */

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 7, 7, 0.7);
}

/* CONTENEDOR PRINCIPAL */
.footer-grid {
  padding: 52px 0 30px;
  display: flex;
  flex-direction: column; /* 👈 clave */
  align-items: center;
  text-align: center;
  gap: 34px;
}

/* COLUMNAS */
.footer-col {
  width: 100%;
  max-width: 360px;
}

/* TITULOS */
.footer-col h3 {
  font-size: 1.22rem;
  margin-bottom: 14px;
  color: var(--orange-2);
}

/* LISTAS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/* LINKS Y TEXTO */
.footer-col a,
.footer-col p {
  color: var(--muted);
  line-height: 1.7;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

/* REDES */
.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, #ff7a1a, #b12d13);
  box-shadow: 0 14px 25px rgba(177, 45, 19, 0.22);
  transition: 0.25s ease;
}

.socials a:hover {
  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy p {
  text-align: center;
  color: #bba999;
  padding: 18px 0 24px;
}

/* =========================
   REVEAL (opcional)
========================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* LOGO FOOTER */
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
}

.footer-logo img {
  width: 90px; /* puedes subir a 110px si quieres más impacto */
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1150px) {
  .desktop-nav,
  .header-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 10px;
  }

  .hero-visual {
    min-height: 470px;
    max-width: 620px;
    margin: 0 auto;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-left h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-card-left {
    width: 180px;
    height: 240px;
    top: 130px;
  }

  .hero-card-center {
    width: 210px;
    height: 320px;
    left: 120px;
  }

  .hero-card-right {
    width: 170px;
    height: 220px;
  }

  .client-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .client-card img {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .header-wrap {
    min-height: 74px;
  }

  .logo {
    font-size: 1.85rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-features {
    gap: 8px;
  }

  .feature-chip {
    width: 100%;
    text-align: center;
  }

  .categories-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .community-box {
    padding: 40px 18px;
  }

  .clients-carousel {
    grid-template-columns: 52px 1fr 52px;
    gap: 10px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
  }

  .client-card {
    flex: 0 0 100%;
  }

  .client-card img {
    height: 260px;
  }

  .map-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-left h1,
  .section-head h2,
  .about-content h2,
  .location-info h2,
  .community-box h2 {
    font-size: 2rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-card-left {
    width: 120px;
    height: 170px;
    left: 0;
    top: 140px;
  }

  .hero-card-center {
    width: 150px;
    height: 250px;
    left: 88px;
    top: 40px;
  }

  .hero-card-right {
    width: 120px;
    height: 165px;
    right: 0;
    bottom: 35px;
  }

  .about-image img {
    min-height: 360px;
  }
}
