body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;  /* Evita que haya desplazamiento horizontal no deseado */
  }
  
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    color: #fff;
    height: 60px;
    overflow: hidden;
  }
  
  .logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  
  .logo img:hover {
    transform: scale(1.1);
    cursor: pointer;
  }
  
  .title {
    font-size: 1rem;
    text-align: center;
    flex: 1;
    margin: 0 1rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
  }
  
  .title:hover {
    transform: scale(1.05);
    color: #007BFF;
    cursor: pointer;
    text-decoration: none;
  }
  
  .social-icons {
    display: flex;
    gap: 0.5rem;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
    color: #FF4136;
  }
  
  nav.site-nav {
    background-color: #000;
    text-align: center;
    padding: 0.5rem 0;
  }
  
  nav.site-nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
    transition: color 0.3s ease, font-weight 0.3s ease;
  }
  
  nav.site-nav a:hover {
    color: #fff;
    font-weight: bold;
  }
  
  @media (max-width: 600px) {
    .title {
      font-size: 0.9rem;
    }
  
    .social-icons a {
      font-size: 0.9rem;
    }
  
    .logo img {
      height: 60px;
      margin-top: -5px;
      margin-bottom: -5px;
    }
  
    nav.site-nav a {
      font-size: 0.9rem;
      margin: 0 0.5rem;
    }
  }

  .banner-container {
    width: 100%;
    overflow: hidden;
    max-height: auto;
    position: relative;
  }
  
  .banner-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  /* Responsivo para móviles */
  @media (max-width: 768px) {
    .banner-container {
      max-height: 250px;
    }
  }
  
  @media (max-width: 480px) {
    .banner-container {
      max-height: 180px;
    }
  }

/* Estilo general del formulario */
.form-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.form-container h2,
.form-container h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.form-container label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="number"],
.form-container input[type="tel"],
.form-container input[type="file"],
.form-container select {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  font-size: 16px;
  margin-bottom: 20px; /* Añadido para separar campos */
}

.form-container input:focus,
.form-container select:focus {
  border-color: #3498db;
  outline: none;
}

.form-container .sexo-opciones {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.form-container .sexo-opciones label {
  font-weight: normal;
}

.form-container select optgroup {
  font-weight: bold;
  background-color: #f2f2f2;
  color: #2c3e50;
}

/* Estilo de los botones */
.botones-evento {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primario {
  background-color: #007BFF;
}

.btn-primario:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Responsivo para dispositivos móviles */
@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }

  .sexo-opciones {
    flex-direction: column;
  }
}

/* Mejorar espaciado en formulario */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="number"],
.form-container input[type="tel"],
.form-container input[type="file"],
.form-container select {
  margin-bottom: 16px; /* Reducir espacio entre campos */
}

/* Mejora en el diseño de las etiquetas */
.form-container label {
  font-size: 1rem; /* Aumentar tamaño de las etiquetas */
}

.texto-ofrenda {
  color: black; /* color normal */
  transition: color 0.3s ease;
}

.texto-ofrenda:hover {
  color: #e60000; /* color al pasar el cursor, por ejemplo rojo */
}

  .site-footer {
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1rem; /* antes era 1rem 1.5rem */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    flex-direction: row;
    gap: 1rem;
  }  
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .footer-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }  
  
  .footer-logo {
    max-width: 200px; /* o más si quieres aún más grande */
    height: auto;
    margin-bottom: 0;
  }  
  
  .footer-left p {
    margin: 0;
    font-size: 0.95rem;
    color: #ccc;
  }
  
  .footer-center a {
    margin: 0 0.5rem;
    color: #fff;
    font-size: 1.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .footer-center a:hover {
    color: #FF4136;
    transform: scale(1.2);
  }
  
  .footer-right p {
    margin: 0.3rem 0;
  }
  
  .footer-right a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  
  .footer-right a i {
    margin-right: 6px;
    color: #007BFF;
  }
  
  .footer-right a:hover {
    color: #007BFF;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-left, .footer-center, .footer-right {
      flex: 1 1 100%;
    }
  }  

  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #aaa;
  }
  
  .footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin: 0 0.3rem;
    transition: color 0.3s ease;
  }
  
  .footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  @media (max-width: 600px) {
    .footer-bottom {
      font-size: 0.75rem;
      padding: 0.5rem 0.5rem 0.8rem;
    }
  }  