:root {
  --orange: #ff5a1f;
  --orange-dark: #c21807;
  --ink: #14171f;
  --ink-soft: #4b5163;
  --bg: #f7f7f9;
  --white: #ffffff;
  --border: #e7e7ec;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 23, 31, 0.08);
  --shadow-lg: 0 20px 45px rgba(20, 23, 31, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 10px 25px rgba(194, 24, 7, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(194, 24, 7, 0.45);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.btn-nav {
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-card {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 0.92rem;
}
.btn-card svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}
.btn-card:hover {
  background: var(--orange-dark);
}
.btn-card:hover svg {
  transform: translateX(3px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: flex;
}
.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.logo-text strong {
  font-weight: 800;
  color: var(--orange-dark);
}
.logo-text.light {
  color: #fff;
}
.logo-text.light strong {
  color: #ff8a5c;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover {
  color: var(--ink);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.main-nav a:hover::after {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, #2a2f3d, #14171f 60%);
  color: #fff;
  padding: 120px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.51;
  pointer-events: none;
}
.hero-icon {
  position: absolute;
  width: 220px;
  height: 220px;
}
.icon-1 {
  top: -40px;
  right: -40px;
}
.icon-2 {
  bottom: -30px;
  left: -60px;
  width: 180px;
  height: 180px;
}
.icon-3 {
  top: 40%;
  right: 15%;
  width: 140px;
  height: 140px;
  display: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.4);
  color: #ff8a5c;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(135deg, #ff8a5c, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Section head ---------- */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.eyebrow {
  display: inline-block;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-soft);
}

/* ---------- Sucursales ---------- */
.sucursales {
  padding: 100px 0;
}
.stores-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  display: grid;
  grid-template-columns: 500px 400px;
  overflow: hidden;
}
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.store-map {
  position: relative;
  min-height: 340px;
  background: var(--bg);
}
.store-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.store-info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 90, 31, 0.12),
    rgba(194, 24, 7, 0.12)
  );
  color: var(--orange-dark);
  flex-shrink: 0;
}
.card-icon svg {
  width: 22px;
  height: 22px;
}
.card-top h3 {
  font-size: 1.2rem;
}
.card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.card-info svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orange);
}
.card-info a:hover {
  color: var(--orange-dark);
}

/* ---------- Nosotros ---------- */
.nosotros {
  padding: 0 0 100px;
}
.nosotros-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  box-shadow: var(--shadow);
}
.nosotros-text p {
  color: var(--ink-soft);
  margin: 16px 0 22px;
}
.nosotros-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.nosotros-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nosotros-list li {
  padding-left: 26px;
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
}
.nosotros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background: var(--orange);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nosotros-visual {
  max-width: 240px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(194, 24, 7, 0.25));
}

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 12px;
}
.cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
}
.cta .btn-primary {
  background: #fff;
  color: var(--orange-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.cta .btn-primary:hover {
  background: #fff;
  color: var(--orange-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}
.footer-brand p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col a:hover {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .store-card {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .store-map {
    min-height: 280px;
  }
  .nosotros-inner {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .nosotros-visual {
    order: -1;
    max-width: 180px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .main-nav {
    display: none;
  }
  .hero {
    padding: 100px 0 70px;
  }
  .hero-stats {
    gap: 28px;
  }
}
@media (max-width: 560px) {
  .store-map {
    min-height: 220px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .header-inner {
    height: 64px;
  }
  .btn-nav {
    display: none;
  }
}
