body {
    background-color: #e1fae3; /* verde suave, casi pastel */
}
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
  }
  .servicio {
    text-align: center;
    padding: 60px 20px;
  }
  .aviso-capa {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(203, 252, 203, 0.85);
    z-index: 1050;
    display: none;
  }
  .aviso-contenido {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    position: relative;
  }
  .idioma-selector {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    width: auto;
  }

.capa-aviso {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 64, 0, 0.8); /* Verde oscuro semitransparente */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
  
.contenido-aviso {
    background: #fff;
    color: #000;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    max-height: 90%;
}
  
.cerrar-aviso {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.celda-cerrado {
  background-color: #28a745 !important; /* Verde claro de Bootstrap */
  color: white !important;
  font-weight: bold;
}
  