/* Arreglando todo el archivo CSS con sintaxis correcta */
/* Agregando nuevas variables CSS y mejorando el diseño visual */
:root {
  --color-primario: #1c2b4b;
  --color-secundario: #ff8a80;
  --color-acento: #06daff;
  --color-amarillo: #ffd166;
  --color-texto: #444;
  /* Cambiando color del header a un fuchsia-anaranjado */
  --color-header: #fef6f0;
  --sombra-suave: 0 4px 20px rgba(0, 0, 0, 0.08);
  --sombra-media: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transicion-rapida: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transicion-suave: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Quicksand", sans-serif;
  /* Eliminando imagen de fondo back.png y dejando solo color blanco */
  background-color: #ffffff;
  color: var(--color-primario);
  font-size: 1.2rem;
  line-height: 1.6em;
  margin: 0;
  overflow-x: hidden;
}

/* Eliminando overlay con blur del background */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 220px;
}

h1,
h2 {
  font-family: "Pacifico";
  color: var(--color-primario);
  line-height: 1.3em;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(28, 43, 75, 0.1);
}

p {
  font-family: "Quicksand", sans-serif;
  color: var(--color-texto);
  margin-bottom: 1.6em;
  line-height: 1.8;
}

.container {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-logo-superior {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.8);
  box-shadow: var(--sombra-suave);
}

.logo-img {
  height: 110px;
  width: auto;
  max-width: 100%;
  transition: var(--transicion-rapida);
}

/* Eliminando hover effect de rotación en logo */
.logo-img:hover {
  transform: none;
}

.logo-link {
  display: block;
  text-decoration: none;
}

.logo-link img {
  display: block;
  margin: 0 auto;
}

.header-inferior {
  /* Cambiando color del header a rosado más intenso */
  background: var(--color-header);
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--color-secundario);
  padding: 0 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.icono-inicio {
  height: 32px;
  width: auto;
  display: block;
  transition: var(--transicion-rapida);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

/* Eliminando hover effect de rotación en icono inicio */
.icono-inicio:hover {
  transform: none;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-izq {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-izq li {
  list-style: none;
}

.nav-der {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-der li a {
  text-decoration: none;
  color: var(--color-primario);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: var(--transicion-rapida);
}

.nav-der li a:not(.boton-contacto):hover {
  color: var(--color-acento);
  transform: translateY(-2px);
}

.nav-der li a:not(.boton-contacto)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--color-acento);
  transition: var(--transicion-rapida);
  transform: translateX(-50%);
}

.nav-der li a:not(.boton-contacto):hover::after {
  width: 100%;
}

.boton-contacto {
  background: linear-gradient(135deg, var(--color-primario), #2a4066);
  color: white !important;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transicion-rapida);
  box-shadow: 0 4px 15px rgba(28, 43, 75, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.boton-contacto::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.boton-contacto:hover::before {
  left: 100%;
}

.boton-contacto:hover {
  background: linear-gradient(135deg, var(--color-acento), #05c5e8);
  color: white !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(6, 218, 255, 0.4);
}

.boton-contacto:active {
  transform: translateY(-1px) scale(1.02);
}

.header-inferior ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.header-inferior a {
  text-decoration: none;
  color: var(--color-primario);
  font-weight: bold;
  font-size: 1rem;
}

header h1 {
  font-family: "Pacifico", cursive;
  font-size: 2.5rem;
  margin: 0;
  color: var(--color-primario);
}

header h1 span {
  display: block;
  font-size: 3rem;
  color: #18d1d1;
}

.subtitulo {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #666;
}

nav ul {
  list-style: none;
  display: flex;
  margin-left: auto;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #1a4166;
  font-weight: bold;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.8s;
}

/* Cambiando todos los colores del footer a blanco puro */
.footer {
  background: linear-gradient(135deg, #0d1b37, #1a2b4d);
  color: #ffffff;
  padding: 4rem 2rem;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.main {
  padding-top: 13rem;
}

.seccion-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 1.5rem;
  border-radius: 20px;
  transition: var(--transicion-suave);
}

.seccion-main:hover {
  transform: translateY(-5px);
}

.texto-main {
  flex: 1;
  max-width: 50%;
}

.texto-main h1 {
  text-align: center;
  color: var(--color-primario);
  font-family: "Pacifico", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.texto-main h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-acento), var(--color-secundario));
  border-radius: 2px;
}

.texto-main p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.seccion-main img {
  max-width: 100%;
  border-radius: 25px;
  flex-shrink: 0;
  box-shadow: var(--sombra-media);
  transition: var(--transicion-suave);
  border: 3px solid transparent;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

/* Reactivando animación hover en imágenes del body con rotación y borde rosa */
.seccion-main img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border-color: #ff69b4;
}

.img-creacion {
  width: 450px;
  height: auto;
}

.img-tecnicas {
  width: 370px;
  height: auto;
}

.img-restauracion {
  width: 370px;
  height: auto;
  cursor: pointer;
}

.titulo-horarios {
  text-align: center;
  font-family: "Pacifico", cursive;
  color: var(--color-primario);
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.titulo-horarios::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-acento), var(--color-secundario));
  border-radius: 2px;
}

.img-horarios {
  display: block;
  margin: 0 auto 4rem auto;
  max-width: 85%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--sombra-media);
  transition: var(--transicion-suave);
  border: 3px solid transparent;
}

.img-horarios:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--color-acento);
}

.header-mobile {
  display: none;
}

.pie {
  background: linear-gradient(135deg, #0d1b37, #1a2b4d);
  color: #ffffff;
  padding: 4rem 2rem;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.contenedor-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  /* Aumentando el gap del contenedor footer para más separación */
  gap: 4rem;
}

.footer-columna {
  flex: 1;
  min-width: 250px;
}

.logo-box-footer {
  background-color: white;
  padding: 1.5rem;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transicion-rapida);
}

.logo-box-footer:hover {
  transform: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Agregando tap-highlight transparent a logo footer */
.logo-box-footer img {
  height: 180px;
  width: auto;
  display: block;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.redes-footer {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icono-instagram {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: var(--transicion-rapida);
  -webkit-tap-highlight-color: transparent;
}

.icono-red {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: var(--transicion-rapida);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

/* Cambiando color de links del footer a blanco puro */
.redes-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transicion-rapida);
}

.redes-footer a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  color: var(--color-acento);
}

.redes-footer a:hover .icono-red {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px var(--color-acento));
}

/* Cambiando color de títulos del footer a blanco puro */
.ubicacion-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--color-secundario);
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

/* Cambiando color de párrafos del footer a blanco puro */
.ubicacion-footer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ffffff;
}

.mapa-footer iframe {
  border-radius: 15px;
  width: 100%;
  height: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: var(--transicion-rapida);
}

.mapa-footer iframe:hover {
  transform: scale(1.02);
  border-color: var(--color-acento);
}
/* Seccion invertida para desktop */
@media (min-width: 481px) {
  .seccion-invertida {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
}

/* Aumentando tamaño del body de horarios */
.seccion-horarios {
  margin: 0;
  padding: 4rem 2rem 6rem 2rem;
  background: transparent;
  border-radius: 20px;
  box-shadow: none;
}

.tabla-horarios {
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none;
  background: white;
  border: 2px solid rgba(28, 43, 75, 0.1);
}

.fila-horario {
  display: flex;
  border-bottom: 1px solid rgba(28, 43, 75, 0.1);
}

.fila-horario:last-child {
  border-bottom: none;
}

.fila-horario.encabezado {
  background: linear-gradient(135deg, var(--color-primario), #2a4066);
  color: white;
  font-weight: 700;
}

.fila-horario:not(.encabezado):hover {
  background: rgba(6, 218, 255, 0.05);
}

.columna-dia,
.columna-horario,
.columna-edad {
  flex: 1;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
}

/* Eliminando la caja rosa translúcida de horarios */
.info-contacto-horarios {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 3rem auto;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.info-contacto-horarios p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primario);
  margin-bottom: 1.5rem;
  /* Ocultando el texto "Para más información o consultas:" */
  display: none;
}

.boton-contacto-grande {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primario), #2a4066);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transicion-rapida);
  box-shadow: 0 6px 20px rgba(28, 43, 75, 0.3);
}

.boton-contacto-grande:hover {
  background: linear-gradient(135deg, var(--color-acento), #05c5e8);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(6, 218, 255, 0.4);
}

/* Eliminando efectos de hover en imágenes del footer y header */
.logo-img:hover {
  transform: none;
}

.icono-inicio:hover {
  transform: none;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* Eliminando efectos de hover en imágenes del footer */
.seccion-main img:hover {
  transform: none;
  box-shadow: var(--sombra-media);
  border-color: transparent;
}

/* Eliminando tap-highlight en todas las imágenes */
img {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

/* Eliminando outline al hacer focus en imágenes */
img:focus {
  outline: none;
}

a:focus img {
  outline: none;
}

.logo-box-footer:hover {
  transform: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.logo-box-footer img {
  height: 180px;
  width: auto;
  display: block;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.icono-red:hover {
  transform: none;
  filter: none;
}

.redes-footer a:hover .icono-red {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px var(--color-acento));
}

/* ========== ESTILOS PARA FORMULARIO DE CONTACTO ========== */
#video-fondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.formulario-contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 13rem);
  padding: 2rem;
  box-sizing: border-box;
}

.form-contacto {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--sombra-media);
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.form-contacto h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.form-contacto label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-primario);
}

.form-contacto input,
.form-contacto select,
.form-contacto textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 2px solid rgba(28, 43, 75, 0.1);
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  transition: var(--transicion-rapida);
}

.form-contacto input:focus,
.form-contacto select:focus,
.form-contacto textarea:focus {
  outline: none;
  border-color: var(--color-acento);
}

.form-contacto button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-primario), #2a4066);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transicion-rapida);
}

.form-contacto button:hover {
  background: linear-gradient(135deg, var(--color-acento), #05c5e8);
  transform: translateY(-2px);
}

/* ========== MEJORAS RESPONSIVAS PARA MÓVIL ========== */

/* Pantallas medianas (tablets) */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  .main {
    padding-top: 12rem;
  }

  .seccion-main {
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1rem;
  }

  .texto-main p {
    font-size: 1rem;
  }

  .form-contacto {
    padding: 2rem;
    max-width: 90%;
  }

  .boton-contacto-grande {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .seccion-horarios {
    padding: 2rem 1rem 3rem 1rem;
  }

  .columna-dia,
  .columna-horario,
  .columna-edad {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
  }
}

/* Pantallas pequeñas (móviles) - MEJORADAS */
@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }

  html {
    scroll-padding-top: 160px;
  }

  .header-logo-superior {
    padding: 0.5rem 0;
  }

  .logo-img {
    height: 70px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .header-logo-superior {
    flex-direction: column;
    padding-bottom: 0;
  }

  .header-inferior {
    display: none;
  }

  .header-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-header);
    padding: 0.5rem 0.8rem;
    border-bottom: 3px solid var(--color-secundario);
  }

  .header-mobile .nav-der {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
  }

  .header-mobile .nav-der li a {
    font-size: 0.75rem;
  }

  .header-mobile .boton-contacto {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
  }

  .nav-der li a {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .boton-contacto {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
  }

  .main {
    padding-top: 9rem;
  }

  .container {
    width: 92%;
  }

  .seccion-main {
    flex-direction: column !important;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0.8rem;
  }

  .seccion-main:hover {
    transform: none;
  }

  .texto-main {
    max-width: 100%;
  }

  .texto-main h1 {
    font-size: 1.5rem;
    padding-bottom: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .texto-main h1::after {
    width: 60px;
    height: 3px;
  }

  .texto-main p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .seccion-main img {
    width: 100%;
    max-width: 280px;
    margin-top: 0.5rem;
  }

  h1, h2 {
    font-size: 1.5rem;
  }

  /* Formulario de contacto en móvil */
  .formulario-contenedor {
    padding: 1rem;
    min-height: auto;
    align-items: flex-start;
  }

  .form-contacto {
    padding: 1.5rem;
    max-width: 100%;
    margin-top: 0.5rem;
  }

  .form-contacto h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .form-contacto label {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }

  .form-contacto input,
  .form-contacto select,
  .form-contacto textarea {
    padding: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }

  .form-contacto button {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  /* Botón Instagram grande en móvil */
  .boton-contacto-grande {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Horarios en móvil */
  .seccion-horarios {
    padding: 1.5rem 0.5rem 2rem 0.5rem;
  }

  .titulo-horarios {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .tabla-horarios {
    margin-bottom: 2rem;
  }

  .fila-horario {
    flex-direction: row;
    text-align: center;
  }

  .columna-dia,
  .columna-horario,
  .columna-edad {
    padding: 0.6rem 0.3rem;
    font-size: 0.7rem;
    border-right: 1px solid rgba(28, 43, 75, 0.1);
  }

  .columna-edad {
    border-right: none;
  }

  .fila-horario.encabezado .columna-dia,
  .fila-horario.encabezado .columna-horario,
  .fila-horario.encabezado .columna-edad {
    font-size: 0.65rem;
    padding: 0.5rem 0.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .fila-horario.encabezado .columna-edad {
    border-right: none;
  }

  .info-contacto-horarios {
    padding: 1.5rem 1rem;
    margin: 1rem auto;
  }

  /* Footer en móvil */
  .pie {
    padding: 2rem 1rem;
  }

  .contenedor-footer {
    gap: 2rem;
  }

  .footer-columna {
    min-width: 100%;
    margin-bottom: 1rem;
  }

  .logo-box-footer {
    padding: 1rem;
  }

  .logo-box-footer img {
    height: 120px;
  }

  .redes-footer {
    margin-top: 1rem;
  }

  .redes-footer a {
    font-size: 0.85rem;
  }

  .ubicacion-footer h3 {
    font-size: 1.2rem;
  }

  .ubicacion-footer p {
    font-size: 0.9rem;
  }

  .mapa-footer iframe {
    height: 180px;
  }
}

/* Pantallas muy pequeñas */
@media (max-width: 360px) {
  .logo-img {
    height: 60px;
  }

  .header-inferior {
    padding: 0.4rem 0.5rem;
  }

  .nav-der {
    gap: 0.4rem;
  }

  .nav-der li a {
    font-size: 0.6rem;
  }

  .boton-contacto {
    padding: 0.2rem 0.4rem;
    font-size: 0.55rem;
  }

  .main {
    padding-top: 8rem;
  }

  .texto-main h1 {
    font-size: 1.3rem;
  }

  .texto-main p {
    font-size: 0.85rem;
  }

  .form-contacto {
    padding: 1rem;
  }

  .form-contacto h1 {
    font-size: 1.3rem;
  }

  .boton-contacto-grande {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .titulo-horarios {
    font-size: 1.3rem;
  }

  .header-mobile .nav-der {
    gap: 0.4rem;
  }

  .header-mobile .nav-der li a {
    font-size: 0.6rem;
  }

  .header-mobile .boton-contacto {
    padding: 0.2rem 0.4rem;
    font-size: 0.55rem;
  }

  .columna-dia,
  .columna-horario,
  .columna-edad {
    padding: 0.4rem 0.2rem;
    font-size: 0.6rem;
  }

  .fila-horario.encabezado .columna-dia,
  .fila-horario.encabezado .columna-horario,
  .fila-horario.encabezado .columna-edad {
    font-size: 0.55rem;
    padding: 0.4rem 0.2rem;
  }
}
@media (max-width: 480px) {
  /* Quitar resaltado azul SOLO en móvil */
  .boton-contacto,
  .boton-contacto:focus,
  .boton-contacto:active {
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }
}
@media (max-width: 480px) {

  /* Desactivar hover azul en botón contacto (touch) */
  .boton-contacto:hover {
    background: linear-gradient(135deg, var(--color-primario), #2a4066);
    box-shadow: 0 4px 15px rgba(28, 43, 75, 0.3);
    transform: none;
  }

  .boton-contacto::before {
    display: none;
  }

  .boton-contacto {
    -webkit-tap-highlight-color: transparent;
  }

}
@media (max-width: 480px) {

  /* Quitar resaltado azul automático del navegador */
  .boton-contacto,
  .boton-contacto:focus,
  .boton-contacto:focus-visible,
  .boton-contacto:active {
    background: linear-gradient(135deg, var(--color-primario), #2a4066);
    box-shadow: 0 4px 15px rgba(28, 43, 75, 0.3);
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  /* Chrome Android agrega overlay a los <a> */
  a {
    -webkit-tap-highlight-color: transparent;
  }

}
@media (max-width: 480px) {

  /* Separar más los botones del nav móvil */
  .header-mobile .nav-der {
    gap: 0.8rem;              /* antes era 0.5rem */
  }

  .header-mobile .nav-der li a {
    padding: 0.4rem 0.6rem;   /* más área táctil */
  }

  /* Separación extra para el botón contacto */
  .header-mobile .boton-contacto {
    margin-left: 0.3rem;
  }

}
