body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #fff8f0;
    color: #333;
  }
  
  header {
    text-align: center;
    padding: 1rem;
    background-color: #8B1E3F;
  }
  
  header button {
    background-color: #fff;
    color: #8B1E3F;
    border: 2px solid #8B1E3F;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  header button:hover {
    background-color: #8B1E3F;
    color: white;
  }
  
  .galeria, .contacto {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
  }
  
  .galeria h2, .contacto h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #8B1E3F;
  }
  
  .slider {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
  }
  
  .slider img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    scroll-snap-align: start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .contacto p {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  input, textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  form button {
    background-color: #8B1E3F;
    color: white;
    border: none;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
    margin: 0 auto; /* centrado */
    display: block;
  }
  
  form button:hover {
    background-color: #5a1229;
  }

  /* Estilos para el carrusel */
.galeria {
    padding: 2rem;
    background-color: #fff8f0;
    text-align: center;
  }
  
  .galeria h2 {
    color: #8B1E3F;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  
  .carrusel {
    position: relative;
    max-width: 600px; /* antes estaba en 850px */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  }
  
  .carrusel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .carrusel-inner img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 360px; /* antes estaba en 250px */
  }
  
  .carrusel .prev {
    left: 10px;
  }
  
  .carrusel .next {
    right: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carrusel-inner img {
        width: 100%;
        flex: 0 0 100%;
        object-fit: cover;
        border-radius: 20px;
        height: 300px; /* NUEVO - para reducir altura */
    }
  
    .carrusel button {
      font-size: 1.5rem;
    }
  }

  .horario {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  .horario li {
    margin-bottom: 0.3rem;
  }
  
  
  