/* 
body {
  margin: 0;
  padding: 0;
} */
/* Reset global para evitar márgenes/paddings no deseados */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  outline: 1px solid red;
  margin: 0;
  padding: 0;
}

/* NAVBAR PERSONALIZADO */

.menu-principal {
    background-color: #F2F0EB;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    /* border-color: #99006b; */
  }
  
  .contenedor-nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
  }
  .logo-nombre{
    display: flex;
    align-items: center;
    margin-left: 0%;
  } 
  .logo-nav {
    /* border-style: circle;
    width: 100px;
    height: auto; */
      height: 60px;              /* Ajusta según tu diseño */
      width: 60px;               /* Lo hacemos cuadrado */
      border-radius: 50%;        /* Hace que sea perfectamente redondo */
      object-fit: cover;         /* Recorta para encajar en el círculo */
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); /* Opcional: sombra sutil */
  }
  .anylunav{
    margin-left: 10px; /* 🔧 Aquí controlas el espacio */
    font-weight:600;
    color: #000000;
    font-size: 1rem;
  }
  .btn-instagram {
  margin-left: 1rem;
  display: inline-block;
}

.icono-instagram {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.icono-instagram:hover {
  transform: scale(1.2);
}

/* Responsivo para móvil */
@media (max-width: 600px) {
  .icono-instagram {
    width: 20px;
    height: 20px;
  }

  .btn-instagram {
    margin-left: 0.5rem;
  }
}


/* Botón toggle (oculto por defecto, visible en móvil) */
.menu-toggle {
  display: none; /* Se mostrará solo en móvil */
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #b30086;
  z-index: 999;
}

/* Estilo del menú de navegación en escritorio */
.enlaces-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

/* Estilo de los enlaces */
.enlace-nav {
  text-decoration: none;
  font-weight: bold;
  color: #b30086;
  transition: color 0.3s;
}

.enlace-nav:hover {
  color: #f802ae;
}

/* 💡 Estilos para pantallas móviles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Se muestra el botón ☰ */
  }

  .enlaces-nav {
    display: none; /* Ocultamos el menú por defecto */
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 1rem;
    gap: 1rem;
  }

  .enlaces-nav.activo {
    display: flex; /* Mostramos cuando se hace toggle */
  }
}

  .bienvenida {
    background: url("../images/iniciodesenfocado.webp?v=2") center/cover no-repeat;
    height: 42rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* position: relative; */
  }
  /*WHATSAPP FLOTANTE */
  .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

  
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

  .letras-bienvenida {
    text-align: center;
    color: #FFD700; /* dorado suave */
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.8);/* borde difuminado */
    /* z-index: 1; */
    padding: 1rem;
    
  }
  
  .letras-bienvenida h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  .letras-bienvenida p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .btn {
    margin-top: 1rem;
    /* background-color: #b30086; */
    background-color: #d94c4c;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    /* text-decoration: none; */
    font-weight: bold;
  }
/* Ajustes de texto para móviles */
  @media (max-width: 768px) {
    .letras-bienvenida h1 {
      font-size: 2.2rem;
    }

    .letras-bienvenida p {
      font-size: 1rem;
    }

    .btn {
      font-size: 0.9rem;
      padding: 8px 20px;
    }
  }

  .footer {
    background-color: #e5c0e5;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #ddd;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
  }
  /*esto demomento no entra en juego(no apis) */
.opiniones-clientes {
  text-align: center;
  padding: 3rem 1rem;
  background: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
}

.opiniones-clientes h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.carrusel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 1.5rem;
  width: 280px;
  text-align: left;
  position: relative;
}

.review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
  border-color: #ff69b4;
}

.review-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #333;
}

.review-card .stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-card p {
  font-size: 0.95rem;
  font-style: italic;
  color: #444;
}

/* Opiniones locales (no api) */

.review-slider {
  text-align: center;
  margin: 1rem auto;
  /* padding: 0 1rem; */
  width: 90%;
  font-family: 'Segoe UI', sans-serif;

}
.review-slider h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  
}
.contenedor-slider {
  position: relative;
  height: 280px;
}


.resena-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  display: none;
  z-index: 0;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}

.resena-card.activo {
  opacity: 1;
  display: block;
  z-index: 1;
}



.resena-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.resena-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #222;
}

.review-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.resena-card p {
  font-size: 1rem;
  color: #444;
  font-style: italic;
  line-height: 1.6;
  margin: 0 auto;
}

/* 🎯 Flechas específicas para reseñas */
.flecha-reseña {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background-color: rgba(255, 105, 180, 0.9);
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 0.5rem 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 3;
}

.flecha-reseña:hover {
  background-color: rgba(255, 105, 180, 1);
  transform: translateY(-50%) scale(1.1);
}

.flecha-reseña.izq {
  left: 1rem;
}

.flecha-reseña.der {
  right: 1rem;
}

/* Responsive - flechas más cerca */
@media (max-width: 600px) {
  .contenedor-slider {
  position: relative;
  height: 320px;
}
  .flecha-reseña {
    font-size: 1.2rem;
    padding: 0.4rem;
    top: 45%; /* un pelín más arriba */
  }

  .flecha-reseña.izq {
    left: 2 rem;
  }

  .flecha-reseña.der {
    right: 2 rem;
  }
}


/* Responsive */
/* @media (max-width: 768px) {
  .review-slider {
    max-width: 100%;
    padding: 0 1rem;
  }

  .resena-card {
    padding: 1.5rem;
  }

  .flecha.izq {
    left: 5px;
  }

  .flecha.der {
    right: 5px;
  }

  .resena-card p {
    font-size: 0.95rem;
  }
} */



.boton-ver-mas {
  margin-top: 2.5rem;
}

.boton-ver-mas a {
  background-color: #ff69b4;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.boton-ver-mas a:hover {
  background-color: #e0559d;
}

.por-que-elegirnos {
  background-color: #fffafc;
  padding: 4rem 1rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;

}

.por-que-elegirnos h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #333;
}

.razones-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Fuerza 2 columnas por fila */
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.razon-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(255, 105, 180, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.razon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(255, 105, 180, 0.2);
}

.razon-box h3 {
  color: #ff69b4;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.razon-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* RESPONSIVE para móviles */
@media (max-width: 768px) {
  .razones-container {
    grid-template-columns: 1fr;
  }
}
/* SECCIÓN MARCAS */
.marcas {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
  
}

.marcas h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  padding-bottom: 2rem;
  font-family: 'Segoe UI', sans-serif;

}

.marquee {
  max-width: 100%;
  overflow-x: hidden;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scroll-marcas 25s linear infinite;
  width: max-content;
  overflow: hidden;
}

.marquee-track img {
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.marquee-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll-marcas {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .marquee-track {
    gap: 2rem;
  }

  .marquee-track img {
    height: 40px;
    max-width: 90px;
  }
}

@media (max-width: 480px) {
  .marquee-track img {
    height: 35px;
    max-width: 80px;
  }
}
/* SECCIÓN DE NUESTRO SALÓN */
.nuestro-salon {
  text-align: center;
  padding: 3rem 1rem;
  background: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
}
.nuestro-salon h2 {
  font-size : 2rem;
  margin-bottom: 2rem;
  color: #333;
}
.descripcion-salon {
  max-width: 700px;      /* Limita el ancho para que se parta en 2 líneas */
  margin: 0 auto 2.5rem; /* Centrado + espacio inferior */
}
.slider {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
}

.contenedor-imagenes {
  position: relative;
  height: 450px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 12px;
}

.slide.activo {
  opacity: 1;
  z-index: 1;
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 105, 180, 0.75);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.flecha:hover {
  background-color: rgba(255, 105, 180, 1);
}

.flecha.izq {
  left: 10px;
}

.flecha.der {
  right: 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contenedor-imagenes {
    height: 250px;
  }

  .flecha {
    font-size: 1.5rem;
    padding: 0.3rem 0.6rem;
  }
}
.bloque-mapa iframe {
    width: 100%;
    height: 15rem;
    max-width: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Efecto al pasar el ratón (hover) */
  .bloque-mapa iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
/*Responsivo maps para moviles */
   @media (min-width: 768px) {
  .bloque-mapa iframe {
    width: 35rem;
    height: 25rem;
  }
}
/* SECCIÓN DE COOKIES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff0f5;
  color: #333;
  text-align: center;
  padding: 1.2rem 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-size: 1rem;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.cookie-banner p {
  margin: 0 auto;
  max-width: 900px;
  font-size: 1rem;
}

.cookie-buttons {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  background-color: #b30086;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.95rem;
}

.cookie-buttons button:hover {
  background-color: #8c006b;
}

/* RESPONSIVE - Pantallas pequeñas */
/* Responsive para móvil */
@media (max-width: 480px) {
  .cookie-banner {
    padding: 1rem 0.8rem;
    font-size: 0.95rem;
  }

  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cookie-buttons button {
    width: 100%;
    max-width: 300px;
  }
}
/* cookies mapa rechazado */
.aviso-cookies-secundario {
  background-color: #fff0f5;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.aviso-cookies-secundario p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

.aviso-cookies-secundario button {
  margin: 0.4rem;
  padding: 0.6rem 1.2rem;
  background-color: #b30086;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 1rem;
}

.aviso-cookies-secundario button:hover {
  background-color: #8c006b;
  transform: scale(1.05);
}

/* 📱 Versión móvil: botones apilados */
@media (max-width: 480px) {
  .aviso-cookies-secundario {
    padding: 1rem;
  }

  .aviso-cookies-secundario button {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    font-size: 1rem;
  }
}




