::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #f8e9e9;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #b74e58;
  border-radius: 10px;
  border: 3px solid #f8e9e9;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #943b45;
}

::-webkit-scrollbar-button {
  display: none;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #b74e58 #f8e9e9;
}

body, div, textarea {
  scrollbar-width: thin;
  scrollbar-color: #b74e58 #f8e9e9;
}


body {
  margin: 0;
  padding: 0;
  background-color: #e7c9c9;
  color: #b74e58;
  font-family: 'Montserrat', sans-serif;
}

@font-face {
  font-family: 'Castilon';
  src: url('src/Castilon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Castilon', serif;
}




header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}



/* intro centrada */
.intro {
  height: 100vh;
  background-color: #e7c9c9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* logo imagen */
.intro img {
  max-width: 200px;
  animation: fadeIn 2s ease-in;
}



/* animación fade */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}



.menu {
  opacity: 0;
  transition: opacity 1s ease;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #e7c9c9;
  padding: 20px 40px;
  z-index: 1000;
}

.menu.visible {
  opacity: 1;

}



nav ul {
  list-style: none;
  /* quita los puntos */
  display: flex;
  /* pone los items en fila */
  gap: 20px;
  /* espacio entre items */
  padding: 0;
  margin: 0;
}

nav li {
  display: inline;
  /* asegura que no se apilen */
}

nav a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: #b74e58;
  font-weight: bold;
  font-size: 16px;
}

.logo img {
  height: 40px;
  /* ajusta según el tamaño de tu logo */
  width: auto;
  display: block;
}




.organizer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  background-color: #f3dddd;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.organizer-info {
  flex: 1;
  padding: 60px 40px;
  max-width: 600px;
  margin-top: 30px;
  box-sizing: border-box;
}

.organizer h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #b74e58;
  text-align: center;
  width: 100%;
}


.organizer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}


.organizer-img {
  flex: 1;
  height: 100%;
}

.organizer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




.lugares {
  margin: 0;
  padding: 0;
  width: 100vw;
  background-color: #f5eaea;
  box-sizing: border-box;
}

.lugares-info {
  background-color: #f5eaea;
  padding: 60px 40px;
  text-align: center;
}

.lugares h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #b74e58;
  text-align: center;
}



.lugares p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.lugares-img {
  width: 100vw;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: none;
}



.redes {
  padding: 60px 40px;
  background-color: #e7c9c9;
  text-align: center;
}

.redes h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 30px;
  color: #b74e58;
}

.redes-contenido {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.redes-contenido img {
  width: 60px;
  height: 60px;
}

.redes-contenido p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
  text-align: left;
}

* {
  box-sizing: border-box;
}

.fotos {
  background-color: #f8e9e9;
  padding: 60px 20px;
  color: #b74e58;
  text-align: center;
  margin-top: 50px;
}

.fotos h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 40px;
}

.galeria-masonry {
  column-count: 4;
  column-gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.galeria-masonry img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.galeria-masonry img:hover {
  transform: scale(1.02);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-contenido {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

@media (max-width: 992px) {
  .galeria-masonry {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .galeria-masonry {
    column-count: 2 !important;
    column-gap: 10px;
  }

  .galeria-masonry img {
    display: inline-block;
    width: 100%;
  }
  .fotos h1 {
    font-size: 28px;
  }

  .cerrar {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }
}

/* contenedor externo que oculta todo exceso */
.carrusel-wrapper {
  overflow: hidden;
  border-radius: 16px;
  max-width: 95%;
  margin: 0 auto;
  padding: 0;
  background-color: transparent;
}

/* carrusel deslizable */
/* Carrusel más alto */
.galeria-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  height: 250px;
  /* más alto */
}

.galeria-scroll img {
  height: 100%;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  scroll-snap-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.galeria-scroll img:hover {
  transform: scale(1.05);
}


/* Modal grande */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-contenido {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.cerrar:hover {
  color: #ffcccc;
}


/* quitar barra scroll visual */
.galeria-scroll::-webkit-scrollbar {
  display: none;
}

.galeria-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* Reset general */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8e9e9;
}

/* Estilos para el formulario */
.formulario-contacto {
  max-width: 100%;
  width: 100%;
  background-color: transparent;
  padding: 20px;
  padding-top: 100px;
  margin-top: 100px;
  margin: 0;
  box-shadow: none;
}

.formulario-contacto h2 {
  text-align: center;
  font-family: 'Castilon', serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: #b74e58;
}

#form-contacto {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#form-contacto input,
#form-contacto textarea {
  background-color: #fff;
  border: 1px solid transparent;
  border-bottom: 2px solid #b74e58;
  border-radius: 10px;
  font-size: 16px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  color: #b74e58;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
}

#form-contacto input::placeholder,
#form-contacto textarea::placeholder {
  color: #b5747f;
  opacity: 0.7;
}

#form-contacto input:focus,
#form-contacto textarea:focus {
  border-bottom: 2px solid #943b45;
  background-color: #fff6f6;
}

#form-contacto textarea {
  min-height: 120px;
  resize: vertical;
}

#form-contacto button {
  background-color: #b74e58;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  margin-top: 10px;
}

#form-contacto button:hover {
  background-color: #943b45;
}
@media screen and (min-width: 768px) {
  /* Solo para pantallas más grandes */
  .formulario-contacto {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background-color: #f8e9e9;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  
  #form-contacto button {
    width: auto;
    min-width: 150px;
    align-self: flex-start;
  }
}



html {
  scroll-behavior: smooth;
}

.testimonios {
  padding: 60px 20px;
  background-color: #f8e9e9;
  text-align: center;
  color: #b74e58;
  padding-top: 100px;
}

.testimonios h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 40px;
}

.testimonios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.testimonio {
  width: 320px;
  background: white;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}

.testimonio img {
  width: 100%;
  height: 180px;
  /* altura fija para formato horizontal */
  object-fit: cover;
  /* recorta manteniendo proporciones */
  object-position: center;
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}


.testimonio h3 {
  margin: 15px 20px 10px;
  font-size: 18px;
  font-weight: bold;
}

.testimonio p {
  margin: 0 20px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.videos {
  padding: 60px 20px;
  background-color: #f8e9e9;
  text-align: center;
  color: #b74e58;
  padding-top: 100px;
}

.videos h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 40px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.video-container {
  width: 320px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.video-container video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.video-item {
  text-align: center;
  max-width: 360px;
}

.video-titulo {
  font-family: 'Castilon', serif;
  color: #b74e58;
  margin-bottom: 10px;
  font-size: 22px;
}

.video {
  width: 100%;
  border: none;
  border-radius: 12px;
  background-color: #000;
}

.video-descripcion {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #333;
  margin-top: 10px;
}


@media (max-width: 992px) {
  .galeria-masonry {
    column-count: 2;
  }
}

/* 📱 Pantallas pequeñas (celulares) */
@media (max-width: 768px) {

  /* Menú */
  header.menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  nav li {
    display: block;
  }

  nav a {
    font-size: 16px;
  }

  .logo img {
    width: 140px;
    margin-bottom: 10px;
  }

  /* Intro logo */
  .intro img {
    max-width: 180px;
  }

  /* Organizer */
  .organizer {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .organizer-img img {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

  .organizer-info {
    padding: 0;
  }

  /* Secciones generales */


  /* Redes sociales */
  .redes-contenido {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .redes-contenido img {
    width: 80px;
    margin-bottom: 20px;
  }

  /* Carrusel y galería masonry */
  .galeria-scroll {
    height: 180px;
  }

  .galeria-masonry {
    column-count: 1;
    padding: 0 10px;
  }

  /* Testimonios */
  .testimonios-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonio {
    width: 90%;
  }

  /* Videos */
  .video-grid {
    flex-direction: column;
    align-items: center;
  }

  .video-container {
    width: 90%;
    aspect-ratio: 16/9;
  }

  /* Formulario */
  .formulario-contacto {
    padding: 30px 20px;
  }

  .formulario-contacto form input,
  .formulario-contacto form textarea,
  .formulario-contacto form button {
    font-size: 16px;
  }
}

/* Ocultar botón en pantallas grandes */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle img {
  width: 30px;
  height: auto;
}

/* Estilo responsive del menú */
@media (max-width: 768px) {

  nav {
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
  
  nav.visible {
    opacity: 1;
    max-height: 500px; /* o más si tienes muchos items */
  }
  

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  header.menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .logo img {
    width: 130px;
  }
}

/* contenedor superior: logo + botón hamburguesa */


/* que el logo conserve proporción y se vea bien */
.logo img {
  width: auto;
  height: 50px;
  /* ajusta el tamaño visual, pero sin aplastarlo */
  max-height: 60px;
  object-fit: contain;
}

/* botón del menú hamburguesa */
.menu-toggle img {
  width: 30px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .menu-superior {
    justify-content: center;
    gap: 20px;
  }

  .logo img {
    height: 50px;
  }
}

/* por defecto: diseño para computadoras */
.menu-superior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* en celular: logo y botón centrados */
@media (max-width: 768px) {
  .menu-superior {
    justify-content: center;
    gap: 20px;
  }
}

/* Estilo base para computadoras */
.menu-superior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle img {
  width: 30px;
  height: auto;
}

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


/* Responsive para celulares */
@media (max-width: 768px) {

  .menu-superior {
    justify-content: center;
    gap: 20px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
  
  nav.visible {
    max-height: 500px; /* ajusta según el contenido */
    opacity: 1;
  }
  
  nav.visible {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 10px;
  }

  nav li {
    display: block;
  }

  nav a {
    font-size: 16px;
  }

  /* formulario responsive */
  .formulario-contacto {
    padding: 40px 20px;
    max-width: 100%;
  }

  .formulario-contacto input,
  .formulario-contacto textarea {
    font-size: 16px;
    width: 100%;
  }

  .formulario-contacto button {
    font-size: 18px;
    width: 100%;
  }
}

/* transiciones suaves al cargar */
body {
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  background-color: #e7c9c9;
}

/* activada con JS al cargar */
body.loaded {
  opacity: 1;
}

.decoraciones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  width: 100vw;
  box-sizing: border-box;
}

.decoraciones-info {
  flex: 1;
  padding: 60px 40px;
  max-width: 600px;
  box-sizing: border-box;
}

.decoraciones h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #b74e58;
  text-align: center;
  width: 100%;
}


.decoraciones p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}


.decoraciones-img {
  flex: 1;
  height: 100%;
}

.decoraciones-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tipos-eventos {
  background-color: #fdf2f2; /* un rosado muy suave que contrasta */
  padding: 60px 20px;
  text-align: center;
  color: #b74e58;
}

.tipos-eventos h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.tipos-eventos ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.tipos-eventos li {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
}


.tipos-eventos li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b74e58;
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 768px) {
  .tipos-eventos {
    padding: 40px 20px;
    text-align: left;
  }

  .tipos-eventos ul {
    padding: 0;
  }

  .tipos-eventos li {
    padding-left: 15px;
    font-size: 16px;
  }

  .tipos-eventos li::before {
    font-size: 18px;
  }
}

/* Responsive para celulares */
@media (max-width: 768px) {
  .decoraciones {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .decoraciones-img img {
    width: 80%;
  }
}

.lugares-img {
  margin-top: 30px;
  text-align: center;
}

.lugares-img img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-simple {
  background-color: #f8e9e9;
  /* nuevo color suave */
  color: #b74e58;
  text-align: center;
  padding: 40px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #b74e58;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

.footer-social {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-creditos {
  font-size: 13px;
  margin-bottom: 20px;
}

.footer-logo {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  width: 80px;
  opacity: 0.8;
  display: block;
}

.footer-social a {
  color: #b74e58;
  text-decoration: none;
  font-weight: 500;
}

.footer-social a:hover {
  text-decoration: underline;
}

.footer-simple a {
  color: #b74e58;
  text-decoration: none;
}

.footer-simple a:hover {
  text-decoration: underline;
}


.redes iframe.lightwidget-widget {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  display: block;
}

.redes {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff4f0;
  /* color diferente al fondo principal */
  color: #b74e58;
}


.redes h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.redes p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  font-family: 'Montserrat', sans-serif;
}

.lightwidget-widget {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

.footer-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  /* igual margen arriba y abajo */
  font-size: 15px;
  font-weight: 500;
}


.footer-whatsapp img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-simple {
  padding: 40px 20px 20px;
}

.servicios-todos {
  padding: 0;
  margin: 0;
  padding-top: 100px;
  
}

.servicios-grid-unida {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
}



/* fondo individual */
.servicio1 {
  background-image: url('src/servicio1.jpg');
}

.servicio2 {
  background-image: url('src/servicio2.jpg');
}

.servicio3 {
  background-image: url('src/servicio3.jpg');
}

.servicio4 {
  background-image: url('src/servicio4.jpg');
}

.servicio5 {
  background-image: url('src/servicio5.jpg');
}

.servicio6 {
  background-image: url('src/servicio6.jpg');
}

.descripcion-expandida {
  grid-column: 1 / -1;
  /* que ocupe toda la fila */
  background-color: #f8e9e9;
  color: #b74e58;
  font-family: 'Montserrat', sans-serif;
  padding: 20px;
  border-top: 1px solid #e0c0c0;
  transition: all 0.3s ease;
  text-align: center;
}

.servicio-box.expandido {
  grid-column: span 3;
  height: auto;
  padding: 40px 20px;
  align-items: flex-start;
}

.servicio-box.expandido .descripcion-expandida {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.titulo-servicio {
  text-align: center;
  width: 100%;
  font-size: 22px;
  margin-bottom: 10px;
}

.servicio-box.expandido {
  grid-column: span 3;
  height: auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 🔁 centra horizontalmente todo */
  justify-content: center;
  text-align: center;
  /* 🔁 centra el texto */
}

.servicio-box.expandido .descripcion-expandida {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
  text-align: center;
  /* 🔁 centra el texto de la descripción */
}

@media (max-width: 1024px) {
  .servicios-grid-unida {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas en tablets */
  }

  .servicio-box.expandido {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .servicios-grid-unida {
    grid-template-columns: repeat(1, 1fr);
    /* 1 columna en móviles */
  }

  .servicio-box.expandido {
    grid-column: span 1;
  }



  .descripcion-expandida {
    font-size: 14px;
    padding: 0 10px;
  }
}




.servicio-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Castilon', serif;
  font-size: 20px;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  color: white;
}

.servicio-box .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* solo oscurece imagen */
  z-index: 0;
}

.servicio-box .titulo-servicio {
  position: relative;
  z-index: 2; /* encima de la sombra */
  color: white;
  text-shadow: none;
}

.descripcion-expandida {
  grid-column: 1 / -1;
  background-color: #f8e9e9;
  color: #b74e58;
  font-family: 'Montserrat', sans-serif;
  padding: 20px;
  border-top: 1px solid #e0c0c0;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.descripcion-expandida.visible {
  max-height: 500px; /* o lo suficiente para el contenido */
  opacity: 1;
  padding: 20px;
}







.language-minimal {
  position: fixed;
  inset: 0;
  background-color: #e7c9c9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  gap: 40px;
}

.language-minimal img {
  width: 120px;
  height: auto;
  opacity: 0.95;
}

.language-options button {
  font-family: 'Montserrat', sans-serif;
  background-color: #b74e58;
  color: white;
  border: none;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.language-options button:hover {
  background-color: #a5424d;
}

.selector-idioma {
  position: fixed;
  inset: 0;
  background-color: #e7c9c9;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

.selector-idioma img {
  width: 180px;
  max-width: 80%;
  margin-bottom: 40px;
}


.selector-idioma .opciones {
  display: flex;
  gap: 30px;
}

.selector-idioma .opciones a {
  font-size: 1rem;
  color: #b74e58;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}


.selector-idioma a {
  font-size: 1.2rem;
  color: #b74e58;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.selector-idioma a:hover {
  text-decoration: underline;
}

.selector-idioma.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}

.galeria-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s;
  object-fit: cover;
  cursor: pointer;
}

.galeria-grid img:hover {
  transform: scale(1.02);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {

  .organizer-img img,
  .decoraciones-img img {
    object-fit: contain;
    height: auto;
  }
}

@media (max-width: 768px) {
  .decoraciones {
    flex-direction: column;
    text-align: center;
  }

  .decoraciones-img {
    padding: 20px 0;
  }

  .decoraciones-img img {
    max-width: 90%;
    margin: 0 auto;
  }
}

.organizer p,
.decoraciones p {
  text-align: center;
}

.estrellas {
  width: 80px !important;
  height: auto !important;
  display: block;
  margin: 10px 0 10px 20px;
  /* arriba, derecha, abajo, izquierda */
}
.modal-testimonio {
  display: flex;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.modal-testimonio.abierto {
  opacity: 1;
  pointer-events: all;
}

.modal-contenido-testimonio {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  color: #b74e58;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.5s ease;
  opacity: 0;
}

.modal-testimonio.abierto .modal-contenido-testimonio {
  transform: translateY(0);
  opacity: 1;
}

.modal-contenido-testimonio h3 {
  font-family: 'Castilon', serif;
  margin: 10px 0 10px;
  font-size: 24px;
}

.modal-contenido-testimonio p {
  font-size: 16px;
  margin-top: 10px;
}

.modal-galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-galeria img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}

.modal-estrellas {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.modal-estrellas img {
  width: 80px;
  height: auto;
}

.cerrar-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #b74e58;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.cerrar-modal:hover {
  color: #943b45;
}

.reconocimientos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  background-color: #f3dddd;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.reconocimientos-img {
  flex: 1;
  height: 100%;
}

.reconocimientos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reconocimientos-info {
  flex: 1;
  padding: 60px 40px;
  max-width: 600px;
  box-sizing: border-box;
  text-align: center;
}

.reconocimientos h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #b74e58;
}

.reconocimientos p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .reconocimientos {
    flex-direction: column;
    text-align: center;
  }

  .reconocimientos-img img {
    width: 80%;
    height: auto;
  }

  .reconocimientos-info {
    padding: 40px 20px;
  }
}

.badge-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#wp-ratedWA {
  text-align: center;
  display: inline-block;
}

@media (max-width: 768px) {
  .reconocimientos {
    flex-direction: column;
    text-align: center;
  }

  .reconocimientos-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .reconocimientos-img img {
    width: 90%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    display: block;

  }

  .reconocimientos-info {
    padding: 40px 20px;
  }
}
.lista-servicio {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
}

.lista-servicio li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #b74e58;
}

.descripcion-expandida h3 {
  font-family: 'Castilon', serif;
  margin-bottom: 12px;
  color: #b74e58;
  font-size: 24px;
}

.eventos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  background-color: #f5eaea; /* 👉 color distinto al fondo general */
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.eventos-info {
  flex: 1;
  padding: 60px 40px;
  max-width: 600px;
  box-sizing: border-box;
}

.eventos h1 {
  font-family: 'Castilon', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #b74e58;
  text-align: center;
  width: 100%;
}

.eventos ul {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  padding-left: 20px;
}

.eventos-img {
  flex: 1;
  height: 100%;
}

.eventos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .eventos {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .eventos-img img {
    width: 80%;
    height: auto;
    margin: auto;
  }
}


section {
  padding-top: 120px; /* ajusta según el tamaño del menú */
}

main {
  padding-top: 120px;
}

.espaciador-menu {
  height: 100px; /* Ajusta este valor según la altura real de tu menú */
}

.formulario-contacto-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.form-logo-fondo {
  position: absolute;
  opacity: 0.5;
  max-width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.formulario-contacto {
  position: relative;
  z-index: 1;
}

#form-contacto button {
  align-self: center;
}
