.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta para que siempre se vea bien */
  display: block;
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 350px; /* altura fija (podés cambiarlo) */
  overflow: hidden; /* agregado acá */
}

/* --- Ajustes importantes para que cada "slide" ocupe exactamente el ancho del contenedor --- */
.slides {
  display: flex;
  width: 700%; /* 7 fotos (7 * 100%) */
  height: 100%;
  animation: slide 30s infinite;
  will-change: transform;
}

.slide {
  flex: 0 0 14.2857%; /* cada slide ocupa 1/7 del total (14.2857% para más precisión) */
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* si querés verla completa cambiá a "contain" */
  display: block;
}

/* keyframes usan % relativos al ancho total de .slides (700%), funcionan con la configuración anterior */
@keyframes slide {
  0%   { transform: translateX(0); }
  14%  { transform: translateX(0); }

  28%  { transform: translateX(-14.2857%); }
  42%  { transform: translateX(-28.5714%); }
  56%  { transform: translateX(-42.8571%); }
  70%  { transform: translateX(-57.1428%); }
  84%  { transform: translateX(-71.4285%); }
  100% { transform: translateX(-85.7142%); }
}

/* Overlay de texto sobre el slider */
.slider-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centra en X e Y */
  text-align: center;
  color: #fff;
  z-index: 5; /* aumentado para que quede siempre sobre las imágenes */
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5); /* cajita gris */
  border-radius: 12px; /* bordes redondeados */
  max-width: 80%; /* evita desbordes en pantallas chicas */
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.slider-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.slider-overlay p {
  font-size: 1.1rem;
  margin: 0;
}

/* Puntos de navegación opcionales */
.navigation {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 6;
}

.bar {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
}

.bar:hover {
  opacity: 1;
}

/* -------- resto de tu CSS (sin cambios) -------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
}

/* menú hamburguesa */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #6c63ff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #6c63ff, #b57dff);
  color: #fff;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
}

.hero-img img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 2rem;
}

.hero-text span {
  font-weight: 700;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: #fff;
  color: #6c63ff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background: #f0f0f0;
}

.big {
  background: #6c63ff;
  color: #fff;
}

.big:hover {
  background: #574bd8;
}

/* Services */
.services h2 {
  text-align: center;
  margin: 2rem 0 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1rem;
}

.service-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Massage */
.massage {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
  padding: 0 1rem;
}

.massage-img img {
  max-width: 100%;
  border-radius: 10px;
}

.massage-text {
  text-align: center;
}

.massage-text h3 {
  margin-bottom: 0.5rem;
}

/* Contact */
.contact {
  background: #f4f4f4;
  text-align: center;
  padding: 2rem 1rem;
}

.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
  .massage {
    flex-direction: row;
    text-align: left;
    max-width: 1100px;
    margin: 2rem auto;
  }
  .massage-text {
    flex: 1;
  }
  .massage-img {
    flex: 1;
  }
}

/* menú hamburguesa activación */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav-links li {
    border-top: 1px solid #eee;
    padding: 0.8rem 0;
    text-align: center;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }
}
n */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav-links li {
    border-top: 1px solid #eee;
    padding: 0.8rem 0;
    text-align: center;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }
}
/* Productos */
.productos {
  text-align: center;
  padding: 3rem 1rem;
}

.productos h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.productos p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.producto {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 280px;
}

.producto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.producto h4 {
  padding: 0.8rem;
  font-size: 1rem;
  color: #333;
  background: #f8f8f8;
}

.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* --- Logo --- */
.logo-img {
  height: 90px;       /* antes era 60px */
  width: auto;
  display: block;
  object-fit: contain;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .logo-img {
    height: 70px;     /* antes 45px */
  }
}
html {
  scroll-behavior: smooth;
}
/* --- Corrige el desplazamiento con navbar fija --- */
section[id],
header[id] {
  scroll-margin-top: 100px; /* ajustá según la altura real del navbar */
}
/* Ajuste general */
section[id],
header[id] {
  scroll-margin-top: 100px;
}

/* Pero para la sección #empresa, queremos que suba más (mostrar el slider también) */
#empresa {
  scroll-margin-top: 0px; /* o probá con 20px si querés un poco de aire */
}
/* --- Video institucional --- */
/* --- Video institucional (formato vertical 9:16) --- */
.video-section {
  text-align: center;
  padding: 3rem 1rem;
  background: #f8f8f8;
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.video-section video {
  width: 100%;
  max-width: 400px;      /* tamaño ideal para web */
  aspect-ratio: 9 / 16;  /* formato vertical */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  object-fit: cover;
}
/* --- Hero con video --- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.hero-video video {
  width: 100%;
  max-width: 320px;   /* tamaño ideal para formato 9:16 */
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  object-fit: cover;
}

/* En pantallas grandes, texto y video lado a lado */
@media (min-width: 900px) {
  .hero-content {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  .hero-text {
    flex: 1;
  }
  .hero-video {
    flex: 1;
    display: flex;
    justify-content: center;
  }
}

/* --- Botón flotante de teléfono --- */
.btn-telefono {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #6c63ff;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
  transition: background 0.3s, transform 0.2s;
}

}

.btn-telefono:hover {
  background: #574bd8;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .btn-telefono {
    font-size: 0.85rem;
    padding: 10px 12px;
    bottom: 15px;
    right: 15px;
    top: auto;
    transform: none;
    white-space: nowrap; /* ? Evita que el número baje de línea */
    width: auto;         /* ? No se estira horizontal */
    height: auto;        /* ? No se deforma vertical */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}


/* --- Modal para ampliar imágenes --- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.modal.mostrar {
  opacity: 1;
}

.modal-contenido {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.mostrar .modal-contenido {
  transform: scale(1);
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.cerrar:hover {
  color: #ccc;
}

#tituloImagen {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
  text-align: center;
}
/* --- Logo con teléfono y dirección al costado --- */
.logo-contacto {
  display: flex;
  align-items: center;
  gap: 16px; /* separación prudente entre logo e info */
}

.logo-contacto .logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.info-contacto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.telefono-top {
  font-weight: 600;
  color: #6c63ff;
  text-decoration: none;
  font-size: 1rem;
}

.telefono-top:hover {
  text-decoration: underline;
}

.direccion-top {
  color: #555;
  font-size: 0.9rem;
  margin-top: 3px;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .logo-contacto {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .info-contacto {
    text-align: center;
  }
}
/* --- Texto adicional debajo del título del slider --- */
.sub-slogan {
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.sub-slogan strong {
  color: #ffd966; /* tono dorado suave */
  font-weight: 700;
}

.sub-slogan .resaltado {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .sub-slogan {
    font-size: 0.9rem;
  }
}
/* --- Bloque informativo en el hero --- */
.hero-info {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem 1.2rem;
  margin: 1rem 0;
  border-radius: 12px;
  line-height: 1.5;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.hero-info p {
  margin: 0.3rem 0;
}

.hero-info .staff {
  color: #ffd966; /* dorado suave */
  font-weight: 600;
}

.hero-info .turno {
  font-size: 1.1rem;
  font-weight: 700;
  color: #90ee90; /* verde claro */
}

@media (max-width: 768px) {
  .hero-info {
    font-size: 0.9rem;
    text-align: center;
  }
}
