:root {
  --bg: #0b0b0b;
  --brand: #f07f19;
  --brand-2: #ff9433;
  --text: #f8fafc;
}

/* BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
}

/* HERO */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: relative;
  min-height: 360px;
  background: url("/Images/Contacto.webp") center / cover no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.68));
}

.hero .inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.6vw, 52px);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--brand);
}

.hero p {
  color: #d1d5db;
  max-width: 760px;
  margin-inline: auto;
}

/* CARD */
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.card-header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.card-header h2 {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 26px);
  text-transform: uppercase;
  color: var(--brand);
}

.card-body {
  padding: 20px;
}

/* CHIP */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* BOTONES PILLS */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-wa {
  background: var(--brand);
  color: #0b0b0b;
  box-shadow: 0 10px 28px rgba(240, 127, 25, 0.35);
}

.btn-wa:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-mail {
  color: #fff;
  border: 2px solid #fff;
}

.btn-mail:hover {
  background: #fff;
  color: #0b0b0b;
}

/* ACORDEÓN FAQ */
details.ac {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.25s ease;
}

details.ac[open] {
  border-color: var(--brand);
  background: rgba(240, 127, 25, 0.08);
}

details.ac > summary {
  list-style: none;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

details.ac > summary::-webkit-details-marker {
  display: none;
}

details.ac > summary::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}

details.ac[open] > summary::after {
  transform: rotate(45deg);
}

details.ac .ac-content {
  padding: 0 16px 16px;
  color: #d1d5db;
}

/* MAPA */
.map {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 14px;
}