/* ============================================================
   /bilbao/styles.css — landing de Paid Media Bilbao & Norte
   Hereda variables, tipografías y utilidades de /styles.css
   ============================================================ */

/* Background sections (no estaban en styles.css raíz) */
.bg-claro {
  background:
    radial-gradient(ellipse 80% 40% at 0% 0%, rgba(30, 198, 182, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(15, 79, 74, 0.04), transparent 55%),
    var(--bg);
  padding: clamp(56px, 8vw, 120px) 0;
}
/* Variante alternativa para alternar fondos cuando hay 2 bg-claro seguidos */
.bg-claro--alt {
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(234, 244, 243, 0.5) 100%);
}
.bg-negro {
  background: #0a3a36;
  color: var(--verde-tint, #eaf4f3);
  padding: clamp(56px, 8vw, 120px) 0;
}
.bg-verde {
  background: var(--verde);
  color: #fff;
  padding: clamp(56px, 8vw, 120px) 0;
}

.white { color: #fff; }
.bg-negro .white,
.bg-verde .white { color: #fff; }

.lead {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--gris-medio);
}
.bg-negro .lead, .bg-verde .lead { color: rgba(255, 255, 255, 0.85); }

.eyebrow.white,
.bg-negro .eyebrow,
.bg-verde .eyebrow {
  color: var(--turquesa);
}

/* ============================================================
   HEADER override (más sobrio para landing comercial)
   ============================================================ */
.header--bilbao {
  /* Mantiene el header global, solo modulamos colores si hace falta */
}

/* ============================================================
   HERO
   ============================================================ */
.bilbao-hero {
  padding-top: clamp(60px, 12vw, 140px);
  padding-bottom: clamp(60px, 10vw, 120px);
}
.bilbao-hero__title {
  font-size: clamp(36px, 6.5vw, 78px);
  line-height: 1.05;
  max-width: 22ch;
  margin: 16px 0 24px;
}
.bilbao-hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  max-width: 64ch;
  color: var(--gris-medio);
  margin: 0 0 32px;
}
.bilbao-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.bilbao-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gris-medio);
  font-family: 'JetBrains Mono', monospace;
}
.bilbao-hero__trust .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--turquesa);
  display: inline-block;
}
.bilbao-hero__trust strong {
  color: var(--verde);
  font-weight: 700;
}

/* ============================================================
   GRIDS
   ============================================================ */
.bilbao-grid {
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
}
.bilbao-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.bilbao-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.bilbao-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* ============================================================
   CARDS — "Para quién"
   ============================================================ */
.bilbao-card {
  background: var(--surface, rgba(255, 255, 255, 0.65));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card, 0 16px 40px rgba(15, 79, 74, 0.06));
}
.bilbao-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquesa);
  font-weight: 700;
  margin-bottom: 10px;
}
.bilbao-card__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--verde);
  line-height: 1.25;
  margin: 0 0 12px;
}
.bilbao-card__lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gris-medio);
  margin: 0 0 18px;
}

/* ============================================================
   LISTAS
   ============================================================ */
.bilbao-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bilbao-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--verde);
}
.bilbao-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--turquesa);
  font-weight: 700;
}
.bilbao-list--dark li {
  color: rgba(255, 255, 255, 0.88);
}
.bilbao-list--dark li::before {
  color: var(--turquesa);
}
.bilbao-list--big li {
  font-size: 17px;
  margin-bottom: 16px;
}

/* ============================================================
   STEPS — "Cómo trabajo"
   ============================================================ */
.bilbao-steps {
  align-items: stretch;
}
.bilbao-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(24px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
}
.bilbao-step__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--turquesa);
  font-weight: 700;
  margin-bottom: 12px;
}
.bilbao-step__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 6px;
  color: #fff;
  line-height: 1.2;
}
.bilbao-step__when {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquesa);
  font-weight: 600;
  margin-bottom: 16px;
}
.bilbao-step p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
}
.bilbao-step__output {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.bilbao-step__output strong { color: #fff; }

/* ============================================================
   PLATAFORMAS
   ============================================================ */
.bilbao-platform {
  background: var(--surface, rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card, 0 16px 40px rgba(15, 79, 74, 0.06));
}
.bilbao-platform__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--verde);
  margin: 0 0 20px;
  line-height: 1.25;
}

/* ============================================================
   PRECIOS
   ============================================================ */
.bilbao-price {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(24px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
}
.bilbao-price--featured {
  background: rgba(30, 198, 182, 0.1);
  border-color: var(--turquesa);
  box-shadow: 0 0 0 1px var(--turquesa), 0 24px 60px rgba(30, 198, 182, 0.15);
}
.bilbao-price__badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--turquesa);
  color: var(--verde);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
}
.bilbao-price__name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquesa);
  font-weight: 700;
  margin-bottom: 12px;
}
.bilbao-price__from {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-body);
  color: #fff;
  margin-bottom: 16px;
}
.bilbao-price__from span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
.bilbao-price__from strong {
  font-family: 'Anton', sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
}
.bilbao-price p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}
.bilbao-price__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 32px auto 0;
  max-width: 64ch;
  text-align: center;
  line-height: 1.55;
}

/* ============================================================
   AUTORIDAD
   ============================================================ */
.bilbao-autoridad__statement {
  font-family: var(--font-editorial, Georgia), Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--verde);
}
.bilbao-autoridad__statement p { margin: 0 0 16px; }
.bilbao-autoridad__signature {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--turquesa);
  text-transform: uppercase;
}
.bilbao-autoridad__note {
  font-size: 13px;
  color: var(--gris-medio);
  margin: 32px auto 0;
  text-align: center;
  font-style: italic;
}

/* ============================================================
   CASOS REALES
   ============================================================ */
.bilbao-cases {
  align-items: stretch;
}
.bilbao-case {
  background: #fff;
  border: 1px solid rgba(15, 79, 74, 0.08);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: 0 16px 40px rgba(15, 79, 74, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.bilbao-case:hover {
  transform: translateY(-3px);
  border-color: var(--turquesa);
  box-shadow: 0 24px 56px rgba(15, 79, 74, 0.1);
}
.bilbao-case--featured {
  border-color: var(--turquesa);
  box-shadow: 0 0 0 1px var(--turquesa), 0 24px 60px rgba(30, 198, 182, 0.18);
}
.bilbao-case__sector {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquesa);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}
.bilbao-case__big {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  color: var(--verde);
  margin-bottom: 14px;
  letter-spacing: 0.005em;
}
.bilbao-case p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gris-medio);
  margin: 0;
}
.bilbao-cases__note {
  font-size: 12px;
  font-style: italic;
  color: var(--gris-medio);
  text-align: center;
  max-width: 60ch;
  margin: 28px auto 0;
  line-height: 1.55;
}

/* Etiqueta auxiliar opcional en labels del form (WhatsApp opcional, etc.) */
.bilbao-form__opt {
  font-weight: 500;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--gris-medio);
  margin-left: 4px;
}

/* ============================================================
   EN 30 SEGUNDOS (data dump LLM-friendly)
   ============================================================ */
.bilbao-quick-wrap {
  padding: clamp(40px, 5vw, 60px) 0;
}
.bilbao-quick {
  background: #fff;
  border: 1px solid rgba(15, 79, 74, 0.08);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 50px rgba(15, 79, 74, 0.05);
}
.bilbao-quick__title {
  margin-bottom: 28px;
}
.bilbao-quick__h {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--verde);
  margin: 12px 0 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.bilbao-quick__list {
  display: grid;
  grid-template-columns: minmax(140px, 180px) 1fr;
  gap: 10px 24px;
  margin: 0;
}
@media (max-width: 640px) {
  .bilbao-quick__list {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .bilbao-quick__list dt { margin-top: 14px; }
}
.bilbao-quick__list dt {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--turquesa);
  padding-top: 4px;
}
.bilbao-quick__list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--verde);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 79, 74, 0.06);
}
.bilbao-quick__list dt:last-of-type + dd,
.bilbao-quick__list dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.bilbao-quick__list dd a { color: var(--turquesa); font-weight: 600; }

/* ============================================================
   FOTO en Autoridad
   ============================================================ */
.bilbao-autoridad__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--turquesa);
  box-shadow: 0 10px 30px rgba(15, 79, 74, 0.15);
}
.bilbao-autoridad__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FOOTER: contacto visible
   ============================================================ */
.bilbao-footer__contact {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(234, 244, 243, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.bilbao-footer__contact a {
  color: var(--turquesa) !important;
  font-weight: 600;
  text-decoration: none;
}
.bilbao-footer__contact a:hover { text-decoration: underline; }
.bilbao-footer__separator {
  color: rgba(234, 244, 243, 0.3);
}

/* ============================================================
   ZONAS ATENDIDAS
   ============================================================ */
.bilbao-zones {
  align-items: stretch;
}
.bilbao-zone {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 79, 74, 0.08);
  border-radius: var(--radius-md, 14px);
  padding: clamp(20px, 2.4vw, 28px);
  transition: border-color 0.2s, transform 0.2s;
}
.bilbao-zone:hover {
  border-color: var(--turquesa);
  transform: translateY(-2px);
}
.bilbao-zone__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--verde);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.bilbao-zone p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gris-medio);
  margin: 0;
}

/* ============================================================
   FILTRO HONESTO (Cuándo sí / Cuándo no)
   ============================================================ */
.bilbao-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 720px) {
  .bilbao-filter { grid-template-columns: 1fr; }
}
.bilbao-filter__col {
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg, 20px);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 79, 74, 0.08);
}
.bilbao-filter__col--yes {
  border-top: 4px solid var(--turquesa);
}
.bilbao-filter__col--no {
  border-top: 4px solid #d97757;
  background: rgba(217, 119, 87, 0.04);
}
.bilbao-filter__col--no .bilbao-list li::before {
  color: #d97757;
  content: "✕";
  font-weight: 700;
}
.bilbao-filter__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--verde);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.bilbao-filter__col--no .bilbao-filter__title {
  color: #b9522c;
}

/* ============================================================
   GARANTÍAS OPERATIVAS
   ============================================================ */
.bilbao-guarantees {
  align-items: stretch;
}
.bilbao-guarantee {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(22px, 2.6vw, 30px);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
}
.bilbao-guarantee__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--turquesa);
  font-weight: 700;
  margin-bottom: 12px;
}
.bilbao-guarantee h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(17px, 1.8vw, 21px);
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}
.bilbao-guarantee p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* ============================================================
   FAQ (acordeón nativo con <details>)
   ============================================================ */
.bilbao-faq {
  max-width: 800px;
  margin: 0 auto;
}
.bilbao-faq__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md, 14px);
  padding: 4px 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.bilbao-faq__item[open] {
  border-color: var(--turquesa);
  background: rgba(30, 198, 182, 0.06);
}
.bilbao-faq__item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.bilbao-faq__item summary::-webkit-details-marker { display: none; }
.bilbao-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--turquesa);
  font-weight: 400;
  transition: transform 0.2s;
}
.bilbao-faq__item[open] summary::after {
  content: "−";
}
.bilbao-faq__answer {
  padding: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}
.bilbao-faq__answer p { margin: 0 0 12px; }
.bilbao-faq__answer p:last-child { margin-bottom: 0; }
.bilbao-faq__answer strong { color: #fff; }

/* ============================================================
   FORMULARIO
   ============================================================ */
.bilbao-form {
  background: var(--surface, rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card, 0 24px 60px rgba(15, 79, 74, 0.08));
}
.bilbao-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .bilbao-form__row { grid-template-columns: 1fr; }
}
.bilbao-form__field--full {
  grid-column: 1 / -1;
}
.bilbao-form__field {
  display: flex;
  flex-direction: column;
}
.bilbao-form__field label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 8px;
}
.bilbao-form__field input,
.bilbao-form__field select,
.bilbao-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(15, 79, 74, 0.2);
  border-radius: var(--radius-md, 14px);
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--verde);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.bilbao-form__field input:focus,
.bilbao-form__field select:focus,
.bilbao-form__field textarea:focus {
  outline: none;
  border-color: var(--turquesa);
  box-shadow: 0 0 0 3px rgba(30, 198, 182, 0.18);
}
.bilbao-form__field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

/* Honeypots — visualmente invisibles para humanos, accesibles para bots */
.bilbao-form__hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.bilbao-form__submit {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.bilbao-form__submit .btn {
  font-size: 16px;
  padding: 16px 32px;
}
.bilbao-form__legal {
  font-size: 12px;
  color: var(--gris-medio);
  text-align: center;
  margin: 0;
  max-width: 50ch;
  line-height: 1.5;
}
.bilbao-form__legal a { color: var(--turquesa); }

.bilbao-form__feedback {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-md, 14px);
  font-size: 14px;
  line-height: 1.5;
}
.bilbao-form__feedback--success {
  background: rgba(30, 198, 182, 0.15);
  border: 1px solid var(--turquesa);
  color: var(--verde);
}
.bilbao-form__feedback--error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #b91c1c;
}

/* ============================================================
   FOOTER (sobreescritura ligera del global)
   ============================================================ */
.bilbao-footer {
  background: #0a3a36;
  color: rgba(234, 244, 243, 0.7);
  padding: 48px 0 32px;
}
.bilbao-footer .footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.bilbao-footer .footer__brand {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.bilbao-footer .footer__role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquesa);
  font-weight: 600;
}
.bilbao-footer .footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
}
.bilbao-footer .footer__nav a {
  color: rgba(234, 244, 243, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.bilbao-footer .footer__nav a:hover { color: var(--turquesa); }
.bilbao-footer .footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(234, 244, 243, 0.5);
}
.bilbao-footer .footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.bilbao-footer .footer__legal a {
  color: rgba(234, 244, 243, 0.6);
  text-decoration: none;
}
.bilbao-footer .footer__legal a:hover { color: var(--turquesa); }

/* ============================================================
   Responsive ajustes finos
   ============================================================ */
@media (max-width: 768px) {
  .bilbao-hero__title { font-size: 38px; }
  .bilbao-hero__sub { font-size: 16px; }
  .bilbao-hero__ctas { flex-direction: column; align-items: stretch; }
  .bilbao-hero__ctas .btn { text-align: center; }
}
