/* Reset y estilos generales */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #6e3bc2, #2d0f69);
  color: white;
  text-align: center;
  padding: 20px;
}

/* Animación de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 10px;
}

header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

header p {
  font-size: 16px;
}

.info {
  margin-bottom: 20px;
  font-size: 16px;
  animation: fadeIn 1s ease-in-out;
}

.botones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 1s ease-in-out;
}

.btn {
  background: white;
  color: #2d0f69;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  margin: 5px auto;
  width: 90%;
  max-width: 350px;
  transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
  background-color: #ddd;
  transform: scale(1.05);
}

/* Carrusel responsivo */
.carrusel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  animation: fadeIn 1s ease-in-out;
}

.carrusel::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 90%;
  scroll-snap-align: center;
  background-color: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px;
}

.slide img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.slide h3 {
  margin: 10px 0 5px;
}

.slide p {
  font-size: 14px;
  color: #eee;
}

/* Formulario de suscripción */
form {
  max-width: 400px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff22;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeIn 1s ease-in-out;
}

form label {
  text-align: left;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

form input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background-color: #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}

form input:focus {
  outline: none;
  transform: scale(1.02);
  box-shadow: 0 0 5px #fff;
}

form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #4CAF50;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

form button:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

/* Footer */
footer {
  background: rgba(0,0,0,0.2);
  padding: 20px;
  margin-top: 40px;
  animation: fadeIn 1s ease-in-out;
}

footer h2 {
  margin-bottom: 10px;
}

footer a {
  display: block;
  margin: 5px 0;
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;
}
.btn i {
  margin-right: 8px;
}
/* Nueva fuente para todo el sitio */
body {
  font-family: 'Poppins', sans-serif;
}

/* Estilo de títulos */
h1, h2 {
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
  color: #ffd700;
}

/* Estilo para los párrafos */
p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Animación suave para textos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.texto-animado {
  animation: fadeInUp 0.8s ease-out both;
}
.menu {
  padding: 30px 20px;
}
.menu h2 {
  margin-bottom: 10px;
  font-size: 24px;
}
.menu p {
  margin-bottom: 20px;
  color: #ffd700;
  font-style: italic;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.menu .item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.menu .item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.menu .item h3 {
  font-size: 16px;
  color: white;
}