@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap");

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1b1b1b;
  --yellow: #ffc928;
  --yellow-light: #ffe17a;
  --white: #ffffff;
  --gray: #b9b9b9;
  --gray-dark: #7c7c7c;
  --line: rgba(255, 255, 255, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Montserrat", Arial, sans-serif;
}

a {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
}

.nav-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 201, 40, 0.45);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  color: #dedede;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--yellow);
}

.nav-whatsapp {
  padding: 12px 20px;
  border: 1px solid var(--yellow);
  border-radius: 4px;
  color: var(--yellow);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.nav-whatsapp:hover {
  color: var(--black);
  background: var(--yellow);
}

/* HERO */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.89) 43%, rgba(0, 0, 0, 0.35) 100%),
    radial-gradient(circle at 92% 45%, #393939 0%, #171717 33%, #090909 72%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -210px;
  border-radius: 50%;
  opacity: 0.13;
  background: var(--yellow);
  box-shadow: 0 0 140px 70px var(--yellow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    120deg,
    transparent 0 130px,
    rgba(255, 255, 255, 0.04) 131px 132px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-tag {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(3.7rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-text {
  max-width: 590px;
  margin-top: 27px;
  color: #dadada;
  font-size: 1rem;
  line-height: 1.8;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 32px;
  padding: 0 27px;
  border-radius: 4px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 32px rgba(255, 201, 40, 0.18);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-whatsapp:hover {
  color: var(--black);
  background: var(--yellow-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(255, 201, 40, 0.3);
}

/* SERVICIOS */
.services-section {
  padding: 105px 0;
  background: #101010;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 55px;
}

.section-heading h2,
.contact-content h2 {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 35px;
  margin-bottom: 30px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.045), transparent 37%),
    var(--black-card);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  width: 86px;
  height: 4px;
  background: var(--yellow);
}

.service-number {
  padding-top: 9px;
  color: var(--yellow);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
}

.service-label {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-content h3 {
  margin-bottom: 24px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-content h4 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}

.service-content p {
  color: #d4d4d4;
  font-size: 0.91rem;
  line-height: 1.75;
}

.service-content .service-highlight {
  margin-top: 18px;
  color: var(--yellow-light);
  font-weight: 800;
  font-style: italic;
}

.service-details {
  align-self: stretch;
  border-left: 1px solid var(--line);
}

.detail-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: #eeeeee;
  font-size: 0.83rem;
  line-height: 1.45;
}

.detail-item:last-child {
  border-bottom: 0;
}

.detail-item > span {
  color: var(--yellow);
  font-weight: 600;
}

.detail-item a {
  flex-shrink: 0;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-item a:hover {
  color: var(--yellow-light);
  text-decoration: underline;
}

.price-item {
  align-items: flex-start;
}

.price-item div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-shrink: 0;
  text-align: right;
}

.price-item strong {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.route-item {
  align-items: flex-start;
}

.route-item ul {
  min-width: 160px;
  list-style: none;
}

.route-item li {
  padding: 3px 0;
  color: #d3d3d3;
  font-size: 0.75rem;
}

.route-item li::before {
  content: "•";
  margin-right: 6px;
  color: var(--yellow);
}

.route-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.route-action small {
  color: #b4b4b4;
  font-size: 0.67rem;
  font-style: italic;
  white-space: nowrap;
}

/* CONTACTO */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.93)),
    radial-gradient(circle at center, #383838, #0a0a0a 65%);
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -270px;
  left: 50%;
  border-radius: 50%;
  opacity: 0.1;
  background: var(--yellow);
  transform: translateX(-50%);
  box-shadow: 0 0 110px 45px var(--yellow);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 730px;
}

.contact-content p:not(.section-tag) {
  max-width: 580px;
  margin: 22px auto 0;
  color: #cbcbcb;
  font-size: 0.98rem;
  line-height: 1.75;
}

.contact-content .btn-whatsapp {
  margin-right: 16px;
}

.phone-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration-color: var(--yellow);
  text-underline-offset: 7px;
}

/* FOOTER */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #070707;
}

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

.footer img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.footer p {
  color: var(--gray-dark);
  font-size: 0.72rem;
}

/* TABLET */
@media (max-width: 960px) {
  .service-card {
    grid-template-columns: 55px 1fr;
  }

  .service-details {
    grid-column: 2;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

/* MÓVIL */
@media (max-width: 650px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-container {
    min-height: 72px;
    gap: 13px;
  }

  .logo img {
    width: 52px;
    height: 52px;
  }

  .nav-menu {
    display: none;
  }

  .nav-whatsapp {
    padding: 10px 13px;
    font-size: 0.63rem;
  }

  .hero {
    min-height: 600px;
  }

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

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .hero-text {
    font-size: 0.93rem;
  }

  .services-section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 22px;
  }

  .service-card::before {
    left: 22px;
  }

  .service-number {
    padding-top: 5px;
    font-size: 1.6rem;
  }

  .service-content h3 {
    margin-bottom: 18px;
    font-size: 2.15rem;
  }

  .service-details {
    grid-column: auto;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .detail-item a,
  .price-item div,
  .route-action {
    text-align: left;
    align-items: flex-start;
  }

  .route-item ul {
    min-width: 0;
  }

  .contact-section {
    padding: 78px 0;
  }

  .contact-content .btn-whatsapp {
    width: 100%;
    margin-right: 0;
  }

  .phone-link {
    display: block;
    margin-top: 25px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  color: #0a0a0a;
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
  animation: whatsappPulse 2.4s infinite;
}

.whatsapp-float:hover {
  color: #0a0a0a;
  background: var(--yellow-light);
  transform: translateY(-4px);
}

.whatsapp-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid #0a0a0a;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
  }

  50% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36),
      0 0 0 10px rgba(255, 201, 40, 0.13);
  }
}

@media (max-width: 650px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 0 17px;
    font-size: 0.66rem;
  }

  .whatsapp-icon {
    width: 22px;
    height: 22px;
    font-size: 0.86rem;
  }
}
.prices-note {
  margin-top: 8px;
  color: #a7a7a7;
  font-size: 0.76rem;
  font-style: italic;
  text-align: right;
}

/* BOTÓN VOLVER AL HERO */
.back-to-top {
  position: fixed;
  left: 25px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 201, 40, 0.55);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--black);
  background: var(--yellow);
}

.back-to-top svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

@media (max-width: 650px) {
  .back-to-top {
    left: 16px;
    bottom: 16px;
    min-width: 52px;
    padding: 0;
    justify-content: center;
  }

  .back-to-top span {
    display: none;
  }
}
/* ==============================
   PÁGINA: SOBRE BLACK CAB
================================= */

.nav-menu a.active {
  color: var(--yellow);
}

/* HERO */
.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.35) 100%),
    radial-gradient(circle at 85% 30%, #353535 0%, #161616 38%, #090909 75%);
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  right: -170px;
  bottom: -190px;
  border: 2px solid rgba(255, 201, 40, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(255, 201, 40, 0.025),
    0 0 0 105px rgba(255, 201, 40, 0.02);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    120deg,
    transparent 0 130px,
    rgba(255, 255, 255, 0.06) 131px 132px
  );
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 95px 0;
}

.about-hero h1 {
  max-width: 720px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-hero h1 span {
  display: block;
  color: var(--yellow);
}

.about-hero p:not(.section-tag) {
  max-width: 530px;
  margin-top: 25px;
  color: #d4d4d4;
  font-size: 1rem;
  line-height: 1.8;
}

/* BLOQUES DE TEXTO */
.about-section {
  padding: 100px 0;
  background: #111111;
}

.about-section-dark {
  background: #080808;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 145px);
}

.about-title {
  position: relative;
}

.about-title::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 25px;
  background: var(--yellow);
}

.about-title .section-tag {
  margin-bottom: 14px;
}

.about-title h2 {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.55rem, 4.6vw, 4.3rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.about-text {
  max-width: 690px;
}

.about-text p {
  margin-bottom: 22px;
  color: #d2d2d2;
  font-size: 1rem;
  line-height: 1.9;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--yellow);
  font-weight: 900;
}

.about-text .about-highlight {
  padding: 18px 20px;
  border-left: 3px solid var(--yellow);
  color: var(--yellow-light);
  background: rgba(255, 201, 40, 0.055);
  font-weight: 800;
  font-style: italic;
  line-height: 1.65;
}

/* UNIDADES */
.units-section {
  padding: 105px 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.94), rgba(10, 10, 10, 0.98)),
    radial-gradient(circle at 70% 0%, #353535, #090909 67%);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.unit-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #252525, #161616);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.unit-card:hover {
  border-color: rgba(255, 201, 40, 0.7);
  transform: translateY(-7px);
}

.unit-card span {
  margin-bottom: auto;
  color: var(--yellow);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.unit-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.unit-card p {
  color: #ababab;
  font-size: 0.78rem;
  line-height: 1.6;
}

/* TABLET */
@media (max-width: 1000px) {
  .units-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .unit-card {
    min-height: 190px;
  }
}

/* MÓVIL */
@media (max-width: 650px) {
  .about-hero {
    min-height: 460px;
  }

  .about-hero-content {
    padding: 75px 0;
  }

  .about-hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.8rem);
  }

  .about-hero p:not(.section-tag) {
    font-size: 0.92rem;
  }

  .about-section,
  .units-section {
    padding: 75px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-title::before {
    width: 48px;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .units-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .unit-card {
    min-height: 175px;
    padding: 18px;
  }

  .unit-card span {
    font-size: 1.35rem;
  }

  .unit-card h3 {
    font-size: 1.35rem;
  }

  .unit-card p {
    font-size: 0.7rem;
  }

  .unit-card:last-child {
    grid-column: span 2;
  }
}
/* ==============================
   PÁGINA: CONTACTO
================================= */

/* HERO */
.contact-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 58%, rgba(0, 0, 0, 0.32) 100%),
    radial-gradient(circle at 82% 40%, #393939 0%, #191919 36%, #090909 74%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: 8%;
  border: 2px solid rgba(255, 201, 40, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 201, 40, 0.03),
    0 0 0 100px rgba(255, 201, 40, 0.018);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    120deg,
    transparent 0 125px,
    rgba(255, 255, 255, 0.055) 126px 127px
  );
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.contact-hero h1 {
  max-width: 760px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.contact-hero h1 span {
  display: block;
  color: var(--yellow);
}

.contact-hero p:not(.section-tag) {
  max-width: 530px;
  margin-top: 24px;
  color: #d4d4d4;
  font-size: 1rem;
  line-height: 1.8;
}

/* DATOS DE CONTACTO */
.contact-page-section {
  padding: 105px 0;
  background: #111111;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 45px;
}

.contact-card {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--white);
  background: #1a1a1a;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  bottom: -80px;
  border: 1px solid rgba(255, 201, 40, 0.15);
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.contact-card:hover {
  border-color: rgba(255, 201, 40, 0.75);
  color: var(--white);
  background: #202020;
  transform: translateY(-6px);
}

.contact-card:hover::after {
  transform: scale(1.45);
}

.contact-card-featured {
  background:
    linear-gradient(145deg, rgba(255, 201, 40, 0.12), transparent 56%),
    #1d1d1d;
}

.contact-card-number {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  color: var(--yellow);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.contact-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 19px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-card-link {
  position: relative;
  z-index: 1;
  color: #d1d1d1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-card-link::after {
  content: " →";
  color: var(--yellow);
  font-size: 1rem;
}

/* MÉTODOS DE PAGO */
.payment-section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
}

.payment-content {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 55px;
}

.payment-content .section-tag {
  margin-bottom: 13px;
}

.payment-content h2,
.business-card-content h2 {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.payment-methods span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 201, 40, 0.45);
  color: #e5e5e5;
  font-size: 0.74rem;
  font-weight: 700;
}

/* TARJETA DE PRESENTACIÓN */
.business-card-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(14, 14, 14, 0.93), rgba(7, 7, 7, 0.98)),
    radial-gradient(circle at center, #363636, #090909 68%);
}

.business-card-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -260px;
  left: 50%;
  border-radius: 50%;
  opacity: 0.1;
  background: var(--yellow);
  box-shadow: 0 0 110px 45px var(--yellow);
  transform: translateX(-50%);
}

.business-card-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.business-card-content h2 {
  margin-bottom: 20px;
}

.business-card-content > p:not(.section-tag) {
  color: #c2c2c2;
  font-size: 0.96rem;
}

/* TABLET */
@media (max-width: 850px) {
  .payment-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .payment-methods {
    justify-content: flex-start;
  }
}

/* MÓVIL */
@media (max-width: 650px) {
  .contact-hero {
    min-height: 440px;
  }

  .contact-hero-content {
    padding: 75px 0;
  }

  .contact-hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .contact-hero p:not(.section-tag) {
    font-size: 0.92rem;
  }

  .contact-page-section {
    padding: 75px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 33px;
  }

  .contact-card {
    min-height: 205px;
    padding: 25px;
  }

  .contact-card h3 {
    font-size: 1.85rem;
  }

  .payment-section {
    padding: 62px 0;
  }

  .payment-methods {
    gap: 8px;
  }

  .payment-methods span {
    padding: 10px 12px;
    font-size: 0.67rem;
  }

  .business-card-section {
    padding: 78px 0;
  }
}
/* ==============================
   PÁGINA: CONCIERGE
================================= */

/* HERO */
.concierge-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.8) 52%, rgba(0, 0, 0, 0.36) 100%),
    radial-gradient(circle at 84% 35%, #3d3d3d 0%, #181818 38%, #090909 75%);
}

.concierge-hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  right: -160px;
  top: -80px;
  border: 2px solid rgba(255, 201, 40, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 201, 40, 0.03),
    0 0 0 115px rgba(255, 201, 40, 0.018);
}

.concierge-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    120deg,
    transparent 0 125px,
    rgba(255, 255, 255, 0.055) 126px 127px
  );
}

.concierge-hero-content {
  position: relative;
  z-index: 1;
  padding: 95px 0;
}

.concierge-hero h1 {
  max-width: 760px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.concierge-hero h1 span {
  display: block;
  color: var(--yellow);
}

.concierge-hero p:not(.section-tag) {
  max-width: 540px;
  margin-top: 25px;
  color: #d2d2d2;
  font-size: 1rem;
  line-height: 1.8;
}

/* SECCIÓN PRINCIPAL */
.concierge-section {
  padding: 105px 0;
  background: #111111;
}

.concierge-main-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.concierge-main-button {
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #d6d6d6;
  background: transparent;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.concierge-main-button:hover,
.concierge-main-button.active {
  border-color: var(--yellow);
  color: var(--black);
  background: var(--yellow);
}

/* GRUPOS PRINCIPALES */
.concierge-group {
  display: none;
}

.concierge-group.active {
  display: block;
  animation: conciergeShow 0.45s ease both;
}

.concierge-group-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 35px;
}

.concierge-group-header > span {
  min-width: 60px;
  color: var(--yellow);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}

.concierge-group-header .section-tag {
  margin-bottom: 8px;
}

.concierge-group-header h2 {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.3rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

/* SUBCATEGORÍAS */
.concierge-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

.concierge-item {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1a1a1a;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.concierge-item:hover {
  border-color: rgba(255, 201, 40, 0.58);
  background: #1f1f1f;
}

.concierge-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 55px 18px 22px;
  cursor: pointer;
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  list-style: none;
  text-transform: uppercase;
}

.concierge-item summary::-webkit-details-marker {
  display: none;
}

.concierge-item summary::after {
  content: "+";
  position: absolute;
  right: 21px;
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.concierge-item[open] summary {
  border-bottom: 1px solid var(--line);
  color: var(--yellow);
}

.concierge-item[open] summary::after {
  transform: rotate(45deg);
}

.concierge-item ul {
  padding: 17px 22px 22px;
  list-style: none;
}

.concierge-item li {
  position: relative;
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #d0d0d0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.concierge-item li:last-child {
  border-bottom: 0;
}

.concierge-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

@keyframes conciergeShow {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABLET */
@media (max-width: 850px) {
  .concierge-list {
    grid-template-columns: 1fr;
  }
}

/* MÓVIL */
@media (max-width: 650px) {
  .concierge-hero {
    min-height: 460px;
  }

  .concierge-hero-content {
    padding: 75px 0;
  }

  .concierge-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .concierge-hero p:not(.section-tag) {
    font-size: 0.92rem;
  }

  .concierge-section {
    padding: 75px 0;
  }

  .concierge-main-categories {
    gap: 8px;
    margin-bottom: 38px;
    padding-bottom: 18px;
  }

  .concierge-main-button {
    padding: 11px 12px;
    font-size: 0.61rem;
  }

  .concierge-group-header {
    gap: 15px;
    margin-bottom: 27px;
  }

  .concierge-group-header > span {
    min-width: 42px;
    font-size: 2.6rem;
  }

  .concierge-item summary {
    min-height: 64px;
    padding: 16px 49px 16px 18px;
    font-size: 1.14rem;
  }

  .concierge-item summary::after {
    right: 17px;
  }

  .concierge-item ul {
    padding: 13px 18px 18px;
  }

  .concierge-item li {
    padding: 7px 0 7px 15px;
    font-size: 0.8rem;
  }
}
/* MENÚ HAMBURGUESA */
.nav-toggle {
  display: none;
  width: 45px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 201, 40, 0.55);
  color: var(--yellow);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 650px) {
  .nav-container {
    position: relative;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    border-bottom: 1px solid rgba(255, 201, 40, 0.3);
    background: #0a0a0a;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    padding: 16px 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.76rem;
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }
}

