/* ==========================
   HEADER POTERE — FINAL 2.3.9 UNDERLINE BLACKMENU ORIGINALCTA
   ========================== */

/* Header transparente al inicio */
header.wp-block-template-part {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255, 255, 255, 0.001);
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  will-change: background, box-shadow;
  transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Contenedor base */
header.wp-block-template-part .wp-block-group {
  margin: 0 !important;
  padding: 28px 40px 7px 40px !important;
  max-width: 100% !important;
  box-sizing: border-box;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  transition: padding 0.4s ease-in-out;
}

/* ==========================
   MENÚ PRINCIPAL — SUBRAYADO BLANCO ELEGANTE
   ========================== */

header.wp-block-template-part nav.wp-block-navigation a {
  position: relative;
  color: #000000 !important; /* 🔹 letras negras */
  text-decoration: none !important;
  font-weight: 400;
  padding-bottom: 4px;
  transition: color 0.3s ease-in-out;
}

/* Línea blanca con efecto */
header.wp-block-template-part nav.wp-block-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease-in-out;
}

/* Hover o activo */
header.wp-block-template-part nav.wp-block-navigation a:hover::after,
header.wp-block-template-part nav.wp-block-navigation a[aria-current="page"]::after {
  width: 100%;
}

/* Hover: mantiene texto negro */
header.wp-block-template-part nav.wp-block-navigation a:hover {
  color: #000000 !important;
}

/* ==========================
   LOGO Y BOTÓN CONTACTO (IDENTIDAD ORIGINAL)
   ========================== */

header.wp-block-template-part img {
  height: 50px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  transition: height 0.4s ease-in-out;
}

/* Botón contacto — versión original intacta */
header.wp-block-template-part a.wp-block-button__link {
  padding: 6px 14px !important;
  font-size: 15px !important;
  background: #007c8f !important;
  color: #ffffff !important;
  border-radius: 25px !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
}

header.wp-block-template-part a.wp-block-button__link:hover {
  background: #5de5f8 !important;
  color: #003f47 !important;
}

/* Cuerpo general */
body {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

/* --- EFECTO DEGRADADO Y COMPACTO AL HACER SCROLL (solo escritorio) --- */
@media (min-width: 769px) {
  body.scrolled header.wp-block-template-part {
    background: linear-gradient(90deg, #5de5f8, #007c8f);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  }

  body.scrolled header.wp-block-template-part .wp-block-group {
    padding: 14px 40px 5px 40px !important;
  }

  body.scrolled header.wp-block-template-part img {
    height: 28px !important;
  }

  body.scrolled header.wp-block-template-part a.wp-block-button__link {
    padding: 4px 12px !important;
    font-size: 13px !important;
  }

  .wp-site-blocks > *:first-child {
    padding-top: 120px !important;
    transition: padding-top 0.3s ease-in-out;
  }

  body.scrolled .wp-site-blocks > *:first-child {
    padding-top: 80px !important;
  }
}

/* ================================
   📱 AJUSTES RESPONSIVOS (MÓVIL)
   ================================ */
@media (max-width: 768px) {
  /* 🔹 Transparente al inicio, degradado al scrollear */
  header.wp-block-template-part {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.001); /* transparente */
    box-shadow: none;
    transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  }

  body.scrolled header.wp-block-template-part {
    background: linear-gradient(90deg, #5de5f8, #007c8f); /* degradado al scrollear */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  header.wp-block-template-part .wp-block-group {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 6px 18px 2px 18px !important;
  }

  /* 🔹 Logo más grande en móvil */
  header.wp-block-template-part img {
    height: 34px !important;
    width: auto !important;
  }

  /* Botón contacto original */
  header.wp-block-template-part a.wp-block-button__link {
    padding: 3px 8px !important;
    font-size: 12px !important;
    margin-left: auto !important;
    background: #007c8f !important;
    color: #ffffff !important;
  }

  header.wp-block-template-part nav.wp-block-navigation {
    width: 100%;
    justify-content: flex-end !important;
  }

  /* Subrayado visible también en móvil */
  header.wp-block-template-part nav.wp-block-navigation a::after {
    bottom: -3px;
    height: 1.5px;
  }

  .wp-site-blocks > *:first-child {
    padding-top: 74px !important;
  }

  body.scrolled .wp-site-blocks > *:first-child {
    padding-top: 74px !important;
  }
}



