@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8746f;
   
}

.menu-image {
  width: 17px; /* o el tamaño que necesites */
  margin-bottom: 0px;
}
/* Estilo para el menú 
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(185, 7, 7);
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(159, 162, 177, .3);
    z-index: 1000;
    transition: top 0.3s ease-in-out;
  }
  
  .nav-item {
    color: #83818c;
    padding: 10px 15px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
  }
  
  .nav-item:hover {
    color: #333;
  }
  
 
  
    .nav-item {
      padding: 12px 0;
    }
  }
  
/* Animaciones */
/* Animaciones */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}

.bounce-in {
  animation: bounceIn 1s ease-out forwards;
}

/* Navegación */
.nav {
  background-color: #ffd26f;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-item {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-item:hover,
.nav-item.active {
  color: #ff5e57;
}

/* Carrusel */
.carousel {
  max-width: 100%;
  overflow: hidden;
}

.carousel-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  animation: fadeIn 2s;
}

/* Sección contacto */
.contact-section {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

.contact-container {
  background-color: #f8746f;
  padding: 2rem;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  color: #d4d6d6;
  box-shadow: 0 8px 30px rgba(248, 246, 246, 0.1);
  text-align: center;
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #eee8e8;
}

.subtitle {
  font-size: 1rem;
  color: #fffbfb;
  margin-bottom: 2rem;
}

/* Formulario */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #d8cccc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FCC31C;
  outline: none;
  background-color: #d4d6d6;
}

.btn-enviar {
  background-color: #F8746F;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-enviar:hover {
  background-color: #FCC31C;
}

/* Info de contacto */
.contact-info {
  margin-top: 2rem;
  text-align: left;
  font-size: 1rem;
  color: #cdddda;
}


/* Footer */
.footer {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #229b92;
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
 
}





