/* ==========================================================================
   Don Agencia — CSS propio (réplica exacta del diseño oficial sin Divi)
   ========================================================================== */

:root {
  --brand: #3204f4;
  --brand-2: #2ea3f2;
  --black: #000;
  --white: #fff;
  --gray: #f3f3f3;
  --ink: #111;
  --muted: #8a8a8a;
  --maxw: 1280px;
  --header-h: 120px;
  --ease: cubic-bezier(.16, .84, .44, 1);
  --ff: 'Roboto', Helvetica, Arial, sans-serif;
  --ff-ui: 'Open Sans', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--gray); height: 100%; }
body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background-color: var(--gray);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 900; letter-spacing: -.01em; }

.dona-container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   WORDPRESS ADMIN BAR SUPPORT
   ========================================================================== */
body.admin-bar .dona-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .dona-header {
    top: 46px;
  }
}

/* ==========================================================================
   PRELOADER ELEGANTE DE MARCA (NEGRO Y AZUL BRAND)
   ========================================================================== */
.dona-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.dona-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.dona-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.dona-loader__logo {
  width: 150px;
  height: auto;
  animation: donaPulse 1.4s ease-in-out infinite alternate;
}
@keyframes donaPulse {
  0% { transform: scale(0.96); opacity: 0.85; }
  100% { transform: scale(1.04); opacity: 1; }
}
.dona-loader__bar {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.dona-loader__progress {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: var(--brand);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--brand);
  animation: donaLoaderSlide 1.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes donaLoaderSlide {
  0% { left: -40%; width: 30%; }
  50% { width: 60%; }
  100% { left: 100%; width: 30%; }
}

/* ---------- Botones ---------- */
.dona-btn { display: inline-block; font-family: var(--ff-ui); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; padding: 14px 30px; border: 0; border-radius: 2px; cursor: pointer; transition: transform .2s var(--ease), opacity .2s; }
.dona-btn--primary { background: var(--brand); color: var(--white); }
.dona-btn--primary:hover { transform: translateY(-2px); opacity: .92; }
.dona-btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, .5); }

/* ==========================================================================
   HEADER & VARIANTES POR PÁGINA
   ========================================================================== */
.dona-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 50; transition: background .3s var(--ease), box-shadow .3s var(--ease), top .3s var(--ease); }
.dona-header__inner { max-width: 100%; display: flex; align-items: center; gap: 24px; padding: 18px 40px; }
.dona-logo { display: block; line-height: 0; }
.dona-logo__img { width: 150px; height: auto; }
.dona-logo__img--black { display: none; }
.dona-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.dona-nav__close { display: none; }
.dona-nav__footer { display: flex; align-items: center; gap: 20px; }
.dona-nav__copy { display: none; }

.dona-nav__list { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; font-family: var(--ff-ui); font-weight: 600; font-size: 15px; letter-spacing: .06em; }
.dona-nav__list a { color: var(--white); opacity: .95; transition: color .2s; }

/* REGLA CRÍTICA: Opción active del menú SIEMPRE color azul brand */
.dona-nav__list .current-menu-item a,
.dona-nav__list .current_page_item a,
.dona-nav__list a[aria-current="page"] {
  color: var(--brand) !important;
  font-weight: 700;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
.dona-nav__list a:hover { color: var(--brand); }

/* Las imágenes de banderas y GPTW siempre en FULL COLOR sin invertidos */
.dona-flags, .dona-gptw { mix-blend-mode: normal !important; filter: none !important; }
.dona-flags img, .dona-gptw img { filter: none !important; opacity: 1 !important; }

.dona-flags { list-style: none; display: flex; gap: 9px; margin: 0; padding: 0; align-items: center; }
.dona-flag { display: block; line-height: 0; cursor: pointer; }
.dona-flag img { width: 30px; height: 20px; object-fit: cover; border-radius: 3px; display: block; }
.dona-gptw { display: block; line-height: 0; }
.dona-gptw img { width: 64px; height: auto; display: block; }
.dona-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.dona-burger span { width: 26px; height: 2px; background: #fff; display: block; transition: background .3s; }

/* 1. Header en Home: Efecto invertido SOLO para el logo Don y los enlaces de navegación */
.dona-header--home { position: fixed; background: transparent !important; box-shadow: none !important; }
.dona-header--home .dona-logo,
.dona-header--home .dona-nav__list a:not([aria-current="page"]):not(.current-menu-item a) {
  mix-blend-mode: difference;
  color: #ffffff;
}

/* 2. Header en Trabajos (Fijo transparente con logo blanco y textos blancos) */
.dona-header--trabajos { position: fixed; background: transparent !important; box-shadow: none !important; }
.dona-header--trabajos .dona-logo__img--white { display: block !important; }
.dona-header--trabajos .dona-logo__img--black { display: none !important; }
.dona-header--trabajos .dona-nav__list a:not([aria-current="page"]):not(.current-menu-item a) { color: #ffffff; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }

/* 3. Header en Contacto y Políticas (Transparente con logo negro y textos de menú negros) */
.dona-header--contacto { position: fixed; background: transparent !important; box-shadow: none !important; }
.dona-header--contacto .dona-logo__img--white { display: none !important; }
.dona-header--contacto .dona-logo__img--black { display: block !important; }
.dona-header--contacto .dona-nav__list a:not([aria-current="page"]):not(.current-menu-item a) { color: #000000; }
.dona-header--contacto .dona-burger span { background: #000000 !important; }

/* Header sólido / sticky al hacer scroll: FONDO VAR(--GRAY) SIEMPRE */
.dona-header.is-solid, .dona-header.is-scrolled:not(.dona-header--trabajos):not(.dona-header--home) {
  background-color: var(--gray) !important;
  box-shadow: 0 2px 18px rgba(0,0,0,.07);
  position: fixed;
}
.dona-header.is-solid .dona-logo__img--white, .dona-header.is-scrolled:not(.dona-header--trabajos):not(.dona-header--home) .dona-logo__img--white { display: none; }
.dona-header.is-solid .dona-logo__img--black, .dona-header.is-scrolled:not(.dona-header--trabajos):not(.dona-header--home) .dona-logo__img--black { display: block; }
.dona-header.is-solid .dona-nav__list a:not([aria-current="page"]):not(.current-menu-item a),
.dona-header.is-scrolled:not(.dona-header--trabajos):not(.dona-header--home) .dona-nav__list a:not([aria-current="page"]):not(.current-menu-item a) { color: var(--ink); }

.dona-visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ==========================================================================
   HERO
   ========================================================================== */
.dona-hero { position: relative; width: 100%; height: 100vh; background: var(--black); overflow: hidden; }
.dona-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.dona-hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 26px; color: #fff; opacity: .75; text-shadow: 0 2px 8px rgba(0,0,0,.5); animation: donaBob 1.6s ease-in-out infinite; }
@keyframes donaBob { 50% { transform: translate(-50%, 8px); } }

/* ==========================================================================
   TRABAJOS — PORTFOLIO 1 COLUMNA CON PARALLAX SIN HUECOS NEGROS
   ========================================================================== */
.dona-trabajos-full { padding-top: 0; background: var(--black); }
.dona-portfolio { display: flex; flex-direction: column; width: 100%; }
.dona-portfolio__item {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  overflow: hidden;
  color: var(--white);
  background: #000;
}
.dona-portfolio__bg {
  position: absolute;
  inset: -18% 0;
  width: 100%;
  height: 136%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.05s linear;
}
.dona-portfolio__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.88) 100%);
  transition: background 0.4s var(--ease);
}
.dona-portfolio__item:hover .dona-portfolio__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.95) 100%);
}
.dona-portfolio__content {
  position: relative;
  z-index: 2;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 90vw;
}
.dona-portfolio__claim {
  font-family: var(--ff-ui);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.dona-portfolio__title {
  font-size: clamp(38px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.8);
  transition: transform 0.3s var(--ease);
}
.dona-portfolio__item:hover .dona-portfolio__title {
  transform: translateX(12px);
}

/* ==========================================================================
   SINGLE PROJECT — MULTIMEDIA Y METADATOS
   ========================================================================== */
.dona-project { padding: calc(var(--header-h) + 40px) 0 80px; background-color: var(--gray); }
.dona-project__back { margin-bottom: 24px; }
.dona-project__back a { font-family: var(--ff-ui); font-weight: 700; font-size: 14px; text-transform: uppercase; color: var(--brand); letter-spacing: 0.05em; transition: opacity .2s; }
.dona-project__back a:hover { opacity: .8; }
.dona-project__head { margin-bottom: 36px; }
.dona-project__title { font-size: clamp(38px, 6vw, 76px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 8px; }
.dona-project__claim { font-size: clamp(18px, 2.5vw, 28px); color: var(--muted); font-family: var(--ff-ui); font-weight: 600; text-transform: uppercase; margin: 0; }

.dona-project__layout { display: grid; grid-template-columns: 3fr 1fr; gap: 40px; align-items: start; margin-bottom: 40px; }

/* Lista de Videos de Campaña */
.dona-project__media-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.dona-project__media-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.dona-video { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background: #000; border-radius: 6px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.dona-video iframe, .dona-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.dona-project__media-caption {
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
  padding-left: 4px;
}

/* Metadatos (CLIENTE, AÑO, PAÍS) directamente sobre el fondo var(--gray) */
.dona-project__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
.dona-info-item { display: flex; flex-direction: column; gap: 4px; }
.dona-info-item__label { font-family: var(--ff-ui); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.dona-info-item__value { font-family: var(--ff); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--black); letter-spacing: -0.01em; }
.dona-project__desc { font-family: var(--ff-ui); font-size: 17px; line-height: 1.7; max-width: 800px; color: var(--ink); margin-top: 30px; }

/* ==========================================================================
   PÁGINAS GENÉRICAS CON FONDO BRAND GRAY
   ========================================================================== */
.dona-main--page { padding: calc(var(--header-h) + 40px) 0 80px; background-color: var(--gray); }
.dona-article__title { font-size: clamp(36px, 5vw, 64px); text-transform: uppercase; margin-bottom: 24px; font-weight: 900; letter-spacing: -.02em; }
.dona-article__content { font-family: var(--ff-ui); font-size: 17px; max-width: 820px; line-height: 1.6; }
.dona-article__content a { color: var(--brand); text-decoration: underline; }

/* ==========================================================================
   FOOTER GLOBAL UNIFICADO (ALTURA EXACTA 100VH)
   ========================================================================== */
.dona-footer {
  margin: 0;
  margin-top: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--gray);
  background-repeat: no-repeat;
  /* Igual que producción: gráfico "DON BY HAVAS" contenido abajo-derecha, nunca
     estirado a lo ancho, para que jamás tape el formulario ni el link. */
  background-position: right bottom;
  background-size: contain;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Contenedor: dos columnas (form + mapa) con aire, separado del header y con
   espacio inferior para que el gráfico quede debajo y el link siempre se lea. */
.dona-footer .dona-contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 40px 180px;
  align-items: center;
  box-sizing: border-box;
}

.dona-contact__title {
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

/* Página CONTACTO independiente: el footer es toda la página. Ampliamos el espaciado superior
   para despejar completamente el logo negro y el menú fijo de la cabecera. */
.page-id-863 .dona-footer,
.page-template-page-contacto .dona-footer,
.page-contacto .dona-footer {
  justify-content: flex-start;
}

.page-id-863 .dona-footer .dona-contact__inner,
.page-template-page-contacto .dona-footer .dona-contact__inner,
.page-contacto .dona-footer .dona-contact__inner,
.dona-header--contacto ~ .dona-footer .dona-contact__inner {
  padding-top: calc(var(--header-h) + 110px) !important;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .page-id-863 .dona-footer .dona-contact__inner,
  .page-template-page-contacto .dona-footer .dona-contact__inner,
  .page-contacto .dona-footer .dona-contact__inner,
  .dona-header--contacto ~ .dona-footer .dona-contact__inner {
    padding-top: calc(var(--header-h) + 70px) !important;
    margin-top: 15px;
  }
}

/* FORMULARIO CONTACT FORM 7 — réplica del diseño de producción:
   campos como cajas blancas sobre el fondo gris, con aire. */
.dona-contact .wpcf7 { width: 100%; }
.dona-contact .wpcf7-form { position: relative; display: flex; flex-direction: column; gap: 20px; }
/* CF7 (wpautop) envuelve cada campo en <p>: neutralizamos sus márgenes y <br>
   para que el espaciado lo controle sólo el gap del flex. */
.dona-contact .wpcf7-form p { margin: 0 !important; }
.dona-contact .wpcf7-form br { display: none; }
.dona-contact .dos-columnas { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.dona-contact .columna-izquierda, .dona-contact .columna-derecha { min-width: 0; }
.dona-contact .wpcf7-form-control-wrap { position: relative; display: block; width: 100%; }
.dona-contact label { margin-bottom: 0 !important; display: block; width: 100%; }

.dona-contact input[type="text"],
.dona-contact input[type="email"],
.dona-contact select,
.dona-contact textarea {
  width: 100%;
  background: #ffffff !important;
  border: 1px solid #ececec !important;
  padding: 16px !important;
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-sizing: border-box;
}

.dona-contact select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

.dona-contact input:focus,
.dona-contact select:focus,
.dona-contact textarea:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 1px var(--brand) !important;
}

.dona-contact textarea { min-height: 200px; height: 200px; resize: vertical; line-height: 1.5; }
.dona-contact ::placeholder { color: #999999; font-weight: 400; opacity: 1; }

/* Botón Enviar — azul de marca, como producción */
.dona-contact .wpcf7-submit {
  align-self: flex-start;
  margin-top: 4px;
  background: var(--brand) !important;
  color: #ffffff !important;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 0 !important;
  padding: 14px 42px !important;
  border-radius: 0 !important;
  cursor: pointer;
  box-shadow: none !important;
  transition: background-color 0.25s var(--ease);
}
.dona-contact .wpcf7-submit:hover {
  background-color: #2401be !important;
  transform: none;
  box-shadow: none !important;
}

/* Mensajes de validación y respuesta de CF7 — discretos */
.dona-contact .wpcf7-not-valid { border-color: #d33 !important; }
.dona-contact .wpcf7-not-valid-tip {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 400;
  color: #d33;
  margin-top: 6px;
}
/* Caja de respuesta: oculta cuando no hay mensaje (evita hueco antes del link) */
.dona-contact .wpcf7-response-output[aria-hidden="true"] { display: none !important; }
.dona-contact .wpcf7-response-output {
  font-family: var(--ff-ui);
  font-size: 13px;
  line-height: 1.5;
  margin: 18px 0 0 !important;
  padding: 12px 16px !important;
  border-width: 1px !important;
  border-radius: 0 !important;
}
/* El spinner y los <p> vacíos que genera CF7 no deben crear filas extra en el
   flex column (metían un hueco entre el botón y el link de políticas). */
.dona-contact .wpcf7-form p:empty { display: none; }
.dona-contact .wpcf7-spinner { position: absolute; margin-left: 14px; }

/* Enlace de políticas — azul de marca como producción, siempre legible sobre el
   fondo gris (el gráfico queda contenido abajo-derecha, no lo tapa). */
.dona-contact__form .dona-footer__link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--brand) !important;
  text-decoration: none;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
  transition: opacity 0.2s;
  position: relative;
  z-index: 2;
}
.dona-contact__form .dona-footer__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Mapa con Puntos de Oficinas (Hotspots) */
.dona-contact__map { position: relative; width: 100%; display: flex; justify-content: center; }
.dona-map-wrap { position: relative; width: 100%; max-width: 480px; }
.dona-americas { width: 100%; height: auto; display: block; }
.dona-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  cursor: pointer;
  z-index: 5;
  outline: none;
}
.dona-hotspot__dot {
  position: absolute;
  inset: 4px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(50, 4, 244, 0.95);
}
.dona-hotspot__pulse {
  position: absolute;
  inset: -6px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  animation: donaHotspotPulse 2s infinite ease-out;
  opacity: 0;
}
@keyframes donaHotspotPulse {
  0% { transform: scale(0.2); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Tooltip al hacer Hover: Enlace en Azul Brillante Legible sobre fondo oscuro */
.dona-hotspot__tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(15, 15, 20, 0.88);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 8px;
  font-family: var(--ff-ui);
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 25;
}
.dona-hotspot:hover .dona-hotspot__tooltip,
.dona-hotspot:focus .dona-hotspot__tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dona-hotspot__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(15, 15, 20, 0.88);
}
.dona-hotspot__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dona-hotspot__addr {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.9);
}
.dona-hotspot__contact {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.dona-hotspot__contact a {
  color: #60A5FA !important;
  font-weight: 700;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.4);
  transition: color 0.2s, opacity 0.2s;
}
.dona-hotspot__contact a:hover {
  color: #93C5FD !important;
}

/* ==========================================================================
   COOKIES BANNER
   ========================================================================== */
.dona-cookie { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 100; width: min(920px, 94vw); background: #111; color: #fff; border-radius: 8px; box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.dona-cookie[hidden] { display: none; }
.dona-cookie__inner { display: flex; align-items: center; gap: 22px; padding: 18px 22px; flex-wrap: wrap; }
.dona-cookie__text { font-family: var(--ff-ui); font-size: 14px; margin: 0; flex: 1 1 340px; color: rgba(255,255,255,.9); }
.dona-cookie__text a { color: var(--brand-2); text-decoration: underline; }
.dona-cookie__actions { display: flex; gap: 12px; }

/* ==========================================================================
   RESPONSIVE & OVERLAY MOBILE MENU
   ========================================================================== */
@media (max-width: 900px) {
  .dona-header__inner { padding: 16px 20px; gap: 14px; }
  
  /* OVERLAY DE MENÚ MOBILE FULL-SCREEN ELEGANTE */
  .dona-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 70px 30px 45px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
    z-index: 99999;
    box-sizing: border-box;
  }
  .dona-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.nav-open {
    overflow: hidden;
  }

  /* REGLA CRÍTICA DE OVERLAY: TEXTOS SIEMPRE BLANCOS EN MOBILE */
  .dona-nav .dona-nav__list a:not([aria-current="page"]):not(.current-menu-item a) {
    color: #ffffff !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
  }
  .dona-nav .dona-nav__list .current-menu-item a,
  .dona-nav .dona-nav__list a[aria-current="page"] {
    color: var(--brand) !important;
  }

  /* BOTÓN "X" DE CIERRE DEL OVERLAY */
  .dona-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: #ffffff !important;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.25s var(--ease), color 0.25s;
    z-index: 100000;
  }
  .dona-nav__close:hover,
  .dona-nav__close:focus {
    color: var(--brand) !important;
    transform: scale(1.15) rotate(90deg);
  }

  /* LISTA DE ENLACES DEL MENÚ MOBILE */
  .dona-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    font-size: 24px;
    margin-top: 30px;
  }

  /* BLOQUE INFERIOR CON BANDERAS Y COPYRIGHT 2026 DON AGENCIA PEGADOS ABAJO */
  .dona-nav__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    width: 100%;
    padding-top: 20px;
  }
  .dona-flags {
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
    justify-content: center;
  }
  .dona-flags img {
    width: 36px;
    height: 24px;
  }
  .dona-nav__copy {
    display: block;
    font-family: var(--ff-ui);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .dona-burger { display: flex; margin-left: auto; z-index: 70; }
  .dona-gptw { width: 52px; min-height: 64px; }
  .dona-footer { height: auto; min-height: 100vh; padding: 40px 0; }
  .dona-footer .dona-contact__inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px; }
  .dona-contact .dos-columnas { grid-template-columns: 1fr; }
  .dona-portfolio__item { height: 70vh; }
  .dona-portfolio__content { padding: 30px 24px; }
  .dona-project__layout { grid-template-columns: 1fr; }
}
