
  /* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.libertinus-sans-regular {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}


.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


/* HEADER */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  border-bottom: 2px solid #ddd;

}


.logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.menu {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.menu a:hover {
  background-color: #ccc;
}

/* Botón hamburguesa (invisible en escritorio) */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1000;
}

/*Carusel*/

.carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%; /* Esto hace que sean círculos */
 /*  background-color: #fff; Puedes cambiar el color aquí */
  opacity: 0.5;
  border: none;
  margin: 0 5px;
  transition: opacity 0.3s, background-color 0.3s;
}

/*.desplazado {
  transform: translateX(-5%); /* Ajusta el valor según se vea bien 
}*/

/* ANIVERSARIO */
.aniversario {
  position: relative;
  text-align: center;
}

.aniversario img {
  width: 100%;
  height: auto;
  display: block;
}

.aniversario .overlay {
  position: absolute;
  bottom: 170px;
  width: 100%;
  color: #fff;
  background: rgba(51, 51, 51, 0.7);
  padding: 20px;
  font-size: 1.5rem;
  font-weight: bold;
 
}

/* MENSAJE */
.mensaje {
  background-color: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
}

.mensaje .contenido h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.video{
  width: 100%;
}

.gracias{
  color: #885a1fdb;
}

.mensaje .btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  /*background-color: #00e6c3;
  color: #fff;*/
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

/*.mensaje .btn:hover {
  background-color: #00bca1;
}*/

.contenido{
  /*border-radius: 20px!important;
 
  border: 1px solid #000;*/
   box-shadow: 20px;
}

/* SECCIONES */


/* SERVICIOS Y PRODUCTOS */
.servicios h2,
.productos h2 {
  text-align: center;
  margin-bottom: 20px;
}

.servicios, .productos,.mapa, .aniversario{
  background-color: #fff;
}

.productos{
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px;
}


.productos-btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  /*background-color: #00e6c3!important;
  color: #fff;*/
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

/*.productos-btn:hover {
  background-color: #00bca1;
}*/

/*.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 10px;
}*/

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}


.card {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.03);
}

/* CONTACTO */
.contacto {
  background-color: #fafafa;
}

.contacto h2 {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

.contacto form {
  max-width: 600px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto input,
.contacto textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.contacto button {
  padding: 10px;
  /*background-color: #00e6c3;
  color: #fff;*/
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contacto button:hover {
  background-color: #00bca1;
}

.contacto .info {
  text-align: center;
  margin-bottom: 20px;
}

.mapa{
margin-top: -8px;
}

/* FOOTER */
.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}



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

  .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    position: absolute;
    top: 60px; /* ajusta si tienes un header fijo */
    right: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 999;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .menu a {
    margin-bottom: 10px;
  }
  .logo img {
    max-width: 120px; /* Reduce un poco el logo en móviles */
    margin-bottom: 15px;
  }

  .carousel-item img {
    height: 300px; /* Reduce la altura del slider en móviles */
  }

  .carousel-caption {
    bottom: 10%; /* Sube un poco el texto */
  }

  .carousel-caption h2 {
    font-size: 1.3rem; /* Reduce tamaño del texto */
    padding: 10px;
  }

  .carousel-caption .overlay {
    padding: 10px;
    border-radius: 5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }

  .video{
    width: 150%;
    margin-left: -25%;
  }

  section.segment {
    padding: 20px 0;
  }

  section.segment img {
    max-height: 500px;
    border-radius: 6px;
  }
}


