    :root {
      --gold: #d9981e;
      --gold-dark: #b9780f;
      --black: #111111;
      --dark: #181818;
      --text: #222222;
      --muted: #666666;
      --light: #f7f7f7;
      --white: #ffffff;
      --border: #e5e5e5;
    }

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

    body {
      font-family: 'Inter', Arial, sans-serif;
      color: var(--text);
      background: #ffffff;
      line-height: 1.6;
    }

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

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

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    /* TOP BAR */
    .top-bar {
      background: #111;
      color: #fff;
      font-size: 14px;
      padding: 9px 0;
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .top-left,
    .top-right {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .top-bar i {
      color: #fff;
      margin-right: 6px;
    }

    .socials {
      display: flex;
      align-items: center;
      gap: 13px;
    }

    /* HEADER */
    .main-header {
      background: #fff;
      box-shadow: 0 2px 18px rgba(0,0,0,0.08);
      position: relative;
      z-index: 10;
    }

    .header-inner {
      height: 92px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: #222;
    }

    .logo img {
      width: 185px;
      height: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
      font-size: 14px;
      font-weight: 700;
    }

    .nav a {
      color: #111;
      transition: 0.2s ease;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--gold);
    }

    .nav .dropdown i {
      font-size: 11px;
      margin-left: 5px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, #e4aa31, #c98313);
      color: #fff;
      border-radius: 5px;
      padding: 14px 22px;
      font-size: 14px;
      font-weight: 800;
      border: 0;
      cursor: pointer;
      transition: 0.2s ease;
      box-shadow: 0 5px 14px rgba(217, 152, 30, 0.28);
    }

    .btn:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, #d9981e, #ad6f0b);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.9);
      color: #fff;
      box-shadow: none;
    }

    .btn-outline:hover {
      background: #fff;
      color: #111;
    }

    /* HERO */
    .hero {
      min-height: 460px;
      display: flex;
      align-items: center;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.58) 40%, rgba(0,0,0,0.18) 100%),
        url("../img/hero-mariachi.png") center/cover no-repeat;
    }

    .hero-content {
      max-width: 540px;
      padding: 80px 0;
    }

    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1.6px;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .hero h1 {
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1.08;
      font-weight: 800;
      margin-bottom: 22px;
    }

    .hero p {
      font-size: 17px;
      max-width: 460px;
      margin-bottom: 30px;
      color: #f3f3f3;
    }

    .hero-buttons {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    /* SECTION GENERAL */
    section {
      padding: 34px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 28px;
    }

    .section-title h2 {
      font-size: 31px;
      line-height: 1.2;
      font-weight: 800;
      color: #222;
      margin-bottom: 9px;
    }

    .separator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      color: var(--gold);
    }

    .separator::before,
    .separator::after {
      content: "";
      display: block;
      width: 30px;
      height: 1px;
      background: var(--gold);
    }

    .separator i {
      font-size: 8px;
    }

    /* SERVICES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 17px;
    }

    .service-card {
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 26px 22px;
      text-align: center;
      background: #fff;
      min-height: 170px;
      transition: 0.2s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .service-icon {
      width: 50px;
      height: 50px;
      border: 1px solid #f0dfbd;
      border-radius: 50%;
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 24px;
      background: #fffaf0;
    }

    .service-card h3 {
      font-size: 16px;
      margin-bottom: 7px;
      font-weight: 800;
    }

    .service-card p {
      font-size: 14px;
      color: #333;
    }

    /* COVERAGE */
    .coverage {
      background: #f5f8fa;
      padding-top: 30px;
      padding-bottom: 34px;
    }

    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .coverage-card {
      background: #fff;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 1px 8px rgba(0,0,0,0.08);
      border: 1px solid #eee;
    }

    .coverage-card img {
      width: 100%;
      height: 155px;
      object-fit: cover;
    }

    .coverage-body {
      padding: 18px 18px 22px;
    }

    .coverage-body h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .coverage-body p {
      font-size: 15px;
      color: #333;
      margin-bottom: 20px;
    }

    .read-more {
      color: var(--gold);
      font-size: 14px;
      font-weight: 800;
    }

    .read-more i {
      margin-left: 7px;
      font-size: 12px;
    }

    /* WHY CHOOSE */
    .why {
      background: #fff;
      padding-top: 32px;
      padding-bottom: 28px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 28px;
      margin-top: 20px;
    }

    .why-item {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 14px;
      align-items: start;
    }

    .why-icon {
      color: var(--gold);
      font-size: 34px;
      line-height: 1;
    }

    .why-item h3 {
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .why-item p {
      font-size: 13px;
      color: #333;
      line-height: 1.55;
    }

    /* CTA */
    .cta {
      padding: 20px 0 18px;
    }

    .cta-box {
      background: linear-gradient(90deg, #f7f0e3, #fbf7ef);
      border-radius: 7px;
      padding: 22px 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .cta-left {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .cta-left .whatsapp-big {
      color: #35bf4f;
      font-size: 60px;
    }

    .cta h2 {
      font-size: 26px;
      font-weight: 800;
      line-height: 1.2;
    }

    .cta p {
      font-size: 16px;
      color: #333;
    }

    /* FOOTER */
    .footer {
      background:
        linear-gradient(90deg, rgba(0,0,0,0.93), rgba(20,20,20,0.95)),
        url("../img/footer-bg.jpg") center/cover no-repeat;
      color: #fff;
      padding: 30px 0 18px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
      gap: 50px;
      margin-bottom: 20px;
    }

    .footer-logo img {
      width: 185px;
      margin-bottom: 14px;
    }

    .footer p,
    .footer a,
    .footer li {
      color: #f1f1f1;
      font-size: 14px;
    }

    .footer h3 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .footer ul {
      list-style: none;
    }

    .footer li {
      margin-bottom: 9px;
    }

    .footer-socials {
      display: flex;
      gap: 16px;
      margin-top: 18px;
    }

    .footer-socials a {
      font-size: 18px;
    }

    .contact-list li {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .contact-list i {
      width: 16px;
    }

    .copyright {
      text-align: center;
      color: #d7d7d7;
      font-size: 13px;
      padding-top: 10px;
    }

    /* RESPONSIVE */
    .menu-toggle {
      display: none;
      font-size: 26px;
      color: #111;
      cursor: pointer;
    }

    @media (max-width: 992px) {
      .nav,
      .header-btn {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-box {
        flex-direction: column;
        text-align: center;
      }

      .cta-left {
        flex-direction: column;
        gap: 10px;
      }
    }

    @media (max-width: 640px) {
      .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .top-left {
        gap: 10px;
      }

      .header-inner {
        height: 78px;
      }

      .logo img {
        width: 155px;
      }

      .hero {
        min-height: 520px;
        background:
          linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.58)),
          url("../img/hero-mariachi.png") center/cover no-repeat;
      }

      .hero h1 {
        font-size: 38px;
      }

      .services-grid,
      .coverage-grid,
      .why-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-height: auto;
      }

      .cta-box {
        padding: 24px;
      }

      .cta h2 {
        font-size: 23px;
      }
    }

    /*desplegable menu*/
    .nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: #111;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  background: #ffffff;
  border-radius: 6px;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  border: 1px solid #eeeeee;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.2s ease;
  z-index: 99;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #fff7e8;
  color: var(--gold);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*hamburguesa*/
/* BOTÓN HAMBURGUESA */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 998;
}

/* MENÚ LATERAL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 86vw);
  height: 100vh;
  background: #111;
  color: #fff;
  z-index: 999;
  padding: 22px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  box-shadow: -12px 0 35px rgba(0,0,0,0.28);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.mobile-menu-header img {
  width: 165px;
  height: auto;
}

.mobile-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu > a,
.mobile-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  text-align: center;
  position: relative;
}

.mobile-dropdown summary i {
  position: absolute;
  right: 8px;
  color: var(--gold);
  transition: 0.2s ease;
}


.mobile-menu > a:hover,
.mobile-menu > a.active,
.mobile-dropdown summary:hover {
  color: var(--gold);
}

.mobile-dropdown {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-dropdown summary {
  list-style: none;
  border-bottom: 0;
}

.mobile-dropdown summary::-webkit-details-marker {
  display: none;
}

.mobile-dropdown[open] summary i {
  transform: rotate(180deg);
}

.mobile-dropdown summary i {
  transition: 0.2s ease;
}

.mobile-submenu {
  padding: 4px 0 12px 14px;
}

.mobile-submenu a {
  display: block;
  padding: 9px 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 600;
}

.mobile-submenu a:hover {
  color: var(--gold);
}

.mobile-whatsapp {
  margin-top: 20px;
  width: 100%;
}

/* EVITAR SCROLL CUANDO EL MENÚ ESTÁ ABIERTO */
body.menu-open {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (min-width: 993px) {
  .mobile-menu,
  .mobile-overlay {
    display: none;
  }
}

/* SEO INTRO */
.seo-intro {
  background: #ffffff;
  padding: 34px 0 26px;
}

.seo-intro-box {
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 58%, #f8f8f8 100%);
  border: 1px solid #f0e1c4;
  border-radius: 10px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.seo-intro-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 5px;
  height: calc(100% - 56px);
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 0 8px 8px 0;
}

.seo-label {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 10px;
}

.seo-intro h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.22;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 14px;
  max-width: 850px;
}

.seo-intro p {
  font-size: 16px;
  color: #333;
  max-width: 880px;
  margin-bottom: 12px;
}

.seo-intro p:last-child {
  margin-bottom: 0;
}

.seo-intro strong {
  color: #111;
  font-weight: 800;
}

.seo-intro-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  min-width: 190px;
}

.seo-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.seo-link i {
  font-size: 12px;
  margin-left: 6px;
}

.seo-link:hover {
  color: var(--gold-dark);
}

@media (max-width: 900px) {
  .seo-intro-box {
    grid-template-columns: 1fr;
    padding: 30px 26px;
  }

  .seo-intro-actions {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .seo-intro {
    padding: 24px 0 18px;
  }

  .seo-intro-box {
    padding: 26px 22px;
  }

  .seo-intro h2 {
    font-size: 25px;
  }

  .seo-intro p {
    font-size: 15px;
  }

  .seo-intro-actions .btn {
    width: 100%;
  }
}

/*whatsapp*/

/* BOTÓN FLOTANTE WHATSAPP IZQUIERDA */
.whatsapp-float-left {
  position: fixed;
  left: 22px;
  bottom: 26px;
  z-index: 997;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e4aa31, #c98313);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(217, 152, 30, 0.38);
  transition: 0.25s ease;
}

.whatsapp-float-left i {
  font-size: 24px;
}

.whatsapp-float-left:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #d9981e, #ad6f0b);
  color: #ffffff;
}

.whatsapp-float-left::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  border: 1px solid rgba(217, 152, 30, 0.45);
  animation: whatsappPulse 1.8s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (max-width: 520px) {
  .whatsapp-float-left {
    left: 16px;
    bottom: 18px;
    padding: 13px 16px;
  }

  .whatsapp-float-left span {
    display: none;
  }

  .whatsapp-float-left i {
    font-size: 27px;
  }
}


/* VIDEOS YOUTUBE */
.youtube-section {
  background: #ffffff;
  padding: 42px 0;
}

.section-subtitle {
  max-width: 680px;
  margin: 10px auto 0;
  color: #555;
  font-size: 16px;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.youtube-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.youtube-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.1);
}

.youtube-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.youtube-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #1d1d1d;
  padding: 17px 18px 6px;
}

.youtube-card p {
  font-size: 14px;
  color: #444;
  padding: 0 18px 20px;
  line-height: 1.55;
}

@media (max-width: 992px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .youtube-section {
    padding: 32px 0;
  }
}


/* FAQ SEO / SNIPPETS */
.seo-faq {
  background: #f7f7f7;
  padding: 46px 0;
}

.faq-wrapper {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: #1d1d1d;
  padding: 19px 22px;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.faq-question i {
  color: var(--gold);
  transition: 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question {
  color: var(--gold-dark);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: #fffaf0;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

@media (max-width: 560px) {
  .seo-faq {
    padding: 34px 0;
  }

  .faq-question {
    font-size: 15px;
    padding: 17px 18px;
  }

  .faq-answer p {
    font-size: 14px;
    padding: 0 18px 18px;
  }
}



/* PARALLAX CTA */
.parallax-cta {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../img/hero-mariachi-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.62),
    rgba(0,0,0,0.38),
    rgba(0,0,0,0.68)
  );
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  padding: 70px 20px;
}

.parallax-label {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.parallax-content h2 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
}

.parallax-content p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.7;
  color: #f1f1f1;
}

.parallax-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #e4aa31, #c98313);
  color: #ffffff;
  padding: 15px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(217, 152, 30, 0.35);
  transition: 0.25s ease;
}

.parallax-btn i {
  font-size: 24px;
}

.parallax-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #d9981e, #ad6f0b);
  color: #ffffff;
}

/* En móviles se desactiva fixed porque algunos navegadores lo cortan */
@media (max-width: 768px) {
  .parallax-cta {
    min-height: 390px;
    background-attachment: scroll;
  }

  .parallax-content {
    padding: 58px 10px;
  }

  .parallax-content p {
    font-size: 15px;
  }

  .parallax-btn {
    width: 100%;
    max-width: 290px;
  }
}



/* PAQUETES DE PRECIOS - TARJETAS BLANCAS */
.pricing-section {
  background: #f7f7f7;
  padding: 52px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 26px 28px;
  text-align: center;
  border: 1px solid #eeeeee;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.25s ease;
  height: auto;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.13);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  transform: translateY(-14px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -42px;
  background: linear-gradient(135deg, #e4aa31, #c98313);
  color: #ffffff;
  padding: 8px 46px;
  font-size: 12px;
  font-weight: 800;
  transform: rotate(40deg);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.pricing-logo {
  width: 190px;
  min-height: 78px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-logo img {
  width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.pricing-heading {
  margin-bottom: 20px;
}

.pricing-day {
  display: block;
  color: var(--gold-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
}

.pricing-heading p {
  max-width: 310px;
  margin: 0 auto;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  text-align: left;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #eeeeee;
  align-items: flex-start;
}

.pricing-list li:last-child {
  border-bottom: 0;
}

.pricing-list span {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.pricing-list strong {
  color: var(--gold-dark);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.pricing-list.simple {
  margin-top: 32px;
  margin-bottom: 38px;
}

.pricing-list.simple li {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 0;
}

.pricing-list.simple span {
  font-size: 17px;
}

.pricing-list.simple strong {
  font-size: 25px;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  margin: auto auto 0;
  background: linear-gradient(135deg, #e4aa31, #c98313);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(217,152,30,0.32);
  transition: 0.25s ease;
}


.pricing-btn {
  margin: 18px auto 0;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #d9981e, #ad6f0b);
  transform: translateY(-2px);
  color: #ffffff;
}

.pricing-btn i {
  font-size: 20px;
}

.pricing-note {
  margin-top: 26px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 610px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 520px) {
  .pricing-section {
    padding: 38px 0;
  }

  .pricing-card {
    padding: 28px 20px 24px;
  }

  .pricing-logo {
    width: 165px;
  }

  .pricing-day {
    font-size: 22px;
  }

  .pricing-list li {
    flex-direction: column;
    gap: 3px;
    text-align: center;
    align-items: center;
  }

  .pricing-list span {
    font-size: 14px;
  }

  .pricing-btn {
    width: 100%;
  }

  .pricing-badge {
    right: -46px;
    top: 18px;
  }
}

/* BREADCRUMB */
.breadcrumb-section {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid #eeeeee;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666666;
}

.breadcrumb a {
  color: #666666;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
  font-size: 11px;
}

.breadcrumb strong {
  color: #111111;
  font-weight: 800;
}

/* HERO INTERNA */
.hero-interna {
  min-height: 430px;
}

.hero-ecatepec {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.62) 45%, rgba(0,0,0,0.22) 100%),
    url("../img/ecatepec.jpg") center/cover no-repeat;
}

/* ZONAS LOCALES */
.local-zones {
  background: #f7f7f7;
  padding: 46px 0;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.zones-grid span {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-left: 4px solid var(--gold);
  border-radius: 7px;
  padding: 13px 15px;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

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

  .hero-interna {
    min-height: 470px;
  }
}

@media (max-width: 520px) {
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    font-size: 13px;
  }
}



.hero-naucalpan {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.62) 45%, rgba(0,0,0,0.22) 100%),
    url("../img/naucalpan.jpg") center/cover no-repeat;
}


.hero-tlalnepantla {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.62) 45%, rgba(0,0,0,0.22) 100%),
    url("../img/tlalnepantla.jpg") center/cover no-repeat;
}

.hero-metepec {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.62) 45%, rgba(0,0,0,0.22) 100%),
    url("../img/metepec.jpg") center/cover no-repeat;
}