:root {
  --pink-main: #f6a6d8;
  --pink-strong: #ec5fae;
  --pink-soft: #fde6f3;
  --dark: #333;
  --gray: #666;
  --white: #fff;
}

/* Botón flotante WhatsApp circular */
.wa-circle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-circle svg {
  width: 30px;
  height: 30px;
  display: block;
}

.wa-circle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  color: #fff;
}

/* efecto suave */
.wa-circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .wa-circle {
    width: 54px;
    height: 54px;
    right: 12px;
    bottom: 12px;
  }

  .wa-circle svg {
    width: 28px;
    height: 28px;
  }
}

/* Móvil: más compacto */
@media (max-width: 600px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 13px;
    gap: 6px;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }
}

/* ===== ABOUT (resumen) ===== */
.about-modern {
  padding: 50px 16px;
  background: #fff;
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.about-grid > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-text {
  background: #fff;
  border: 1px solid rgba(236, 95, 174, 0.18);
  box-shadow: 0 8px 24px rgba(236, 95, 174, 0.08);
  border-radius: 18px;
  padding: 20px;
}

.about-text h2 {
  margin: 0 0 12px;
  color: #ec5fae;
  font-size: 28px;
  line-height: 1.2;
}

.about-text p {
  margin: 0 0 10px;
  color: #444;
  line-height: 1.6;
  font-size: 14.5px;
}

.about-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Botón secundario */
.btn.btn-outline {
  background: transparent;
  color: #ec5fae;
  border: 1.5px solid #ec5fae;
}

.btn.btn-outline:hover {
  background: #ec5fae;
  color: #fff;
}

/* ===== MODAL LEER MÁS ===== */
.about-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.about-modal.active {
  display: block;
}

.about-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.about-modal-box {
  position: relative;
  width: min(92%, 720px);
  max-height: 84vh;
  overflow-y: auto;
  margin: 6vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(236, 95, 174, 0.15);
}

.about-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  background: #fff0f8;
  color: #d74d96;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.about-modal-close:hover {
  background: #ffd9ec;
}

.about-modal-box h3 {
  margin: 4px 32px 12px 0;
  color: #ec5fae;
  font-size: 22px;
  line-height: 1.25;
}

.about-modal-content p {
  margin: 0 0 12px;
  color: #444;
  line-height: 1.65;
  font-size: 14.5px;
}

.about-likes {
  background: #fff7fc;
  border: 1px solid #f8d8ea;
  border-radius: 12px;
  padding: 10px 12px;
}

.about-favs {
  background: #fff7fc;
  border: 1px solid #f8d8ea;
  border-radius: 12px;
  padding: 10px 12px;
  margin: 4px 0 12px;
}

.about-favs strong {
  color: #d7549a;
  display: block;
  margin-bottom: 6px;
}

.about-favs ul {
  margin: 0;
  padding-left: 16px;
  columns: 2;
  gap: 18px;
}

.about-favs li {
  margin-bottom: 5px;
  font-size: 14px;
  color: #444;
}

.about-dm {
  font-weight: 600;
  color: #ec5fae !important;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-grid > img {
    height: 280px;
  }

  .about-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .about-modern {
    padding: 35px 12px;
  }

  .about-grid > img {
    height: 220px;
    border-radius: 14px;
  }

  .about-text {
    padding: 14px;
    border-radius: 14px;
  }

  .about-text h2 {
    font-size: 20px;
  }

  .about-text p {
    font-size: 13.5px;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-actions .btn {
    width: 100%;
  }

  .about-modal-box {
    width: 94%;
    margin-top: 4vh;
    padding: 16px 14px 14px;
    border-radius: 14px;
  }

  .about-modal-box h3 {
    font-size: 18px;
  }

  .about-modal-content p,
  .about-favs li {
    font-size: 13.5px;
  }

  .about-favs ul {
    columns: 1;
  }
}

/* Contenedor Principal */
.gallery-portfolio {
  padding: 60px 20px;
  background-color: #f9f9f9; /* Un gris muy claro para diferenciarlo */
  text-align: center;
}

/* Estilo del Título */
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
  text-transform: uppercase;
}

.section-title span {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff4d4d; /* Color de acento (puedes cambiarlo) */
  margin: 0 auto 40px;
}

/* La Cuadrícula (Grid) */
.portfolio-grid {
  display: grid;
  /* Crea 3 columnas iguales */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; /* Espacio entre fotos */
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilo de Imágenes y Videos */
.portfolio-grid img,
.portfolio-grid video {
  width: 100%;
  height: 300px; /* Altura fija para que todas se vean iguales */
  object-fit: cover; /* Recorta la imagen para que llene el espacio sin deformarse */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Efecto al pasar el mouse */
.portfolio-grid img:hover,
.portfolio-grid video:hover {
  transform: scale(1.03);
  cursor: pointer;
}

/* --- ESTILOS DEL MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Fondo oscuro semitransparente */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

/* --- SELECT Y SLOTS --- */
#service-select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.time-slot {
  padding: 10px;
  text-align: center;
  border: 1px solid #e0c3fc; /* Un color acorde a manicura */
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.time-slot:hover {
  background: #f3e8ff;
}

.time-slot.selected {
  background: #e0c3fc;
  color: white;
  border-color: #b194cf;
}

.confirm-btn {
  width: 100%;
  margin-top: 20px;
  background: #333;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: #fff;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(90deg, var(--pink-strong), var(--pink-main));
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.btn {
  background: var(--pink-strong);
  color: white;
  padding: 11px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 95, 174, 0.35);
}

.btn-light {
  background: white;
  color: var(--pink-strong);
}

/* HERO */
/* Quitar imagen y dejar hero blanco */
.hero{
  min-height: 90vh;
  background: #EC5FAE !important;
  background-image: none !important;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* SECTIONS */
section {
  padding: 110px 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: var(--pink-strong);
}

.section-title span {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--pink-strong);
  margin: 18px auto 0;
}

/* SERVICES (MODERNOS) */
.services {
  background: #fff;
}

.services-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.services-more {
  margin-top: 50px;
  text-align: center;
}

.btn-more {
  padding: 12px 36px;
  font-size: 15px;
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(236, 95, 174, 0.25);
}

.service-card {
  background: white;
  border-radius: 26px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

/* ABOUT MODERNO */
.about-modern {
  padding: 120px 40px;
}

.about-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: var(--pink-strong);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 30px;
}

/* GALERÍA MODERNA (PINTEREST STYLE) */
.gallery-modern {
  background: #fff;
  padding: 120px 40px;
}

.gallery-grid {
  max-width: 1300px;
  margin: auto;
  columns: 4;
  column-gap: 25px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 22px;
  break-inside: avoid;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

/* REVIEWS */
.reviews-modern {
  background: linear-gradient(180deg, #fff, #fde6f3);
}

.reviews-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.review-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 35px 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-stars {
  color: var(--pink-strong);
  font-size: 20px;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.review-card h4 {
  color: var(--pink-strong);
  font-size: 16px;
}

/* CONTACT */
.contact {
  background: var(--pink-soft);
  text-align: center;
}

/* FOOTER SOFT - MS NAILS */
.footer-soft {
  background: linear-gradient(180deg, #fde6f3, #f6a6d8);
  color: #333;
  padding-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
  padding: 0 40px 60px;
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 18px;
  color: #ec5fae;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ec5fae;
}

/* MAPA */
.footer-map-soft {
  text-align: center;
  padding-bottom: 60px;
}

.footer-map-soft h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #ec5fae;
  margin-bottom: 25px;
}

.footer-map-soft iframe {
  width: 85%;
  max-width: 900px;
  height: 260px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* BOTTOM */
.footer-bottom-soft {
  border-top: 1px solid rgba(236, 95, 174, 0.4);
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.footer-bottom-soft p {
  font-size: 13px;
  color: #555;
}

.footer-social-soft a {
  width: 34px;
  height: 34px;
  background: white;
  color: #ec5fae;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(236, 95, 174, 0.25);
  font-size: 14px; /* <-- corregido (estaba cortado) */
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  nav ul {
    display: none;
  }

  .gallery-grid {
    columns: 2;
  }

  .hero h1 {
    font-size: 42px;
  }
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  color: #333;
  width: 420px;
  max-width: 90%;
  border-radius: 22px;
  padding: 30px;
  position: relative;
}

.modal-box h2 {
  color: #ec5fae;
  margin-bottom: 20px;
}

.modal-box label {
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

.modal-box select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  margin-top: 6px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.time-slot {
  padding: 10px;
  background: #fde6f3;
  color: #ec5fae;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
}

.time-slot:hover {
  background: #ec5fae;
  color: #fff;
}

.confirm-btn {
  width: 100%;
  margin-top: 25px;
}

.time-slot.active {
  background: #ec5fae;
  color: #fff;
}

.btn-pink {
  background-color: #ed64a6; /* Color rosa de la imagen */
  color: white;
  border: 2px solid #333;
  padding: 10px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-pink:hover {
  background-color: #d53f8c;
  transform: scale(1.05);
}

/* ESTILOS NECESARIOS PARA EL MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.time-slot {
  padding: 8px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.time-slot.selected {
  background: #ed64a6;
  color: #fff;
  border-color: #ed64a6;
}

.confirm-btn {
  width: 100%;
  margin-top: 25px;
  background: #333;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* ===== HORARIOS HEADER ===== */
.schedule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fde6f3;
  border: 1px solid #f6a6d8;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.schedule-label {
  font-weight: 500;
  color: #555;
}

.schedule-date {
  font-weight: 600;
  color: #ec5fae;
}

:root {
  --gold: #c5a059;
  --dark: #1a1a1a;
  --bg: #ffffff;
}

body {
  background-color: var(--bg);
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

/* Encabezado elegante */
.intro {
  text-align: center;
  padding: 60px 20px;
}

.intro span {
  letter-spacing: 4px;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
}

.intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin: 10px 0;
  font-weight: 400;
}

.intro .line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* Cuadrícula de Galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 0 20px 50px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 350px; /* Altura fija para que se vea ordenado */
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Hace que la foto llene el espacio sin deformarse */
  transition: transform 0.8s ease;
}

/* Efecto al pasar el mouse */
.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Capa oscura suave */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid white;
  padding-bottom: 5px;
}

/* Ajuste para móviles */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 fotos por fila en celular */
    gap: 10px;
  }

  .gallery-item {
    height: 200px;
  }
}

/* ===== MODAL SERVICIOS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 22px;
  padding: 30px;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.modal-box h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

/* Lista de servicios */
.modal-services {
  display: grid;
  gap: 14px;
}

.modal-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fde6f3;
  padding: 14px 18px;
  border-radius: 14px;
}

.modal-service-item span {
  font-size: 14px;
  color: #555;
}

.modal-service-item strong {
  color: #ec5fae;
}

/* ======================================================
 📱 5. MOBILE FIRST – FIX COMPLETO SOLO CELULAR
 ====================================================== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  section {
    padding: 70px 20px;
  }

  /* HEADER */
  header {
    grid-template-columns: auto auto;
    padding: 14px 18px;
  }

  nav ul {
    display: none !important;
  }

  .logo {
    font-size: 22px;
  }

  .btn {
    padding: 9px 18px;
    font-size: 13px;
  }

  /* HERO */
  .hero {
    min-height: 75vh;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  /* SERVICIOS */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }

  .service-card {
    padding: 22px 15px;
    border-radius: 20px;
  }

  .service-card img {
    width: 95px;
    height: 95px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .btn-ver-mas {
    margin-top: 8px;
    font-size: 12px;
    padding: 7px 14px;
    width: 100%;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-text p {
    font-size: 15px;
  }

  /* GALERÍA (AJUSTE GRID MÓVIL) */
  .gallery-grid {
    columns: unset !important;
    column-gap: unset !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }

  .gallery-item {
    height: 220px;
    margin-bottom: 0;
  }

  .gallery-item img {
    height: 100%;
    object-fit: cover;
  }

  /* REVIEWS */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 20px 40px;
  }

  .footer-map-soft iframe {
    width: 100%;
    height: 220px;
  }

  .footer-bottom-soft {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* MODALES MÓVIL */
  .modal-box {
    width: 95%;
    padding: 22px;
    border-radius: 18px;
  }

  .modal-box h2 {
    font-size: 22px;
  }

  .modal-service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px;
  }

  .modal-service-item strong {
    align-self: flex-end;
  }

  /* HORARIOS MÓVIL */
  .time-slots {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .time-slot {
    font-size: 13px;
    padding: 10px 5px;
  }

  .schedule-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 13px;
  }
  

  
    .logo {
    font-family: 'Luckiest Guy', cursive !important;
    }

    .logo {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #ec5fae;
    }



  /* EVITAR ZOOM IOS */
  input,
  select {
    font-size: 16px !important;
  }
}

