*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
.slider img{
    width: 100%;
    height: 200px; /* ajusta el tamaño que quieras */
    object-fit: cover; /* evita deformación */
}
.bx-wrapper {
    border: none !important;
    box-shadow: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
}
body{
  font-family: "Noto Sans", sans-serif;
  background: linear-gradient(45deg, #036635, #1E3A31);  
}

.gridnavidad{
    display: grid;
    grid-template-areas: 
    "a a a "
    "b b b"
    "c c c";
    
}
#titulo{
    grid-area: a;
    padding: 10px;
    color: white;
    
    margin-top: 20px;
}
h1{
    animation-name: animado;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
}
@keyframes animado {
    from { /* primer fotograma */
        margin-left: 20%;
        
    }
    to { /* último fotograma */
        margin-left: 50%;
        
    }

}
#contenido{
    grid-area: b;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr; /* tres columnas iguales */
    gap: 20px; 
    padding: 20px;
    min-height: 300px;
    margin-bottom: 60px;
}
#contenido img{
    width: 100%;
    max-width: 100%;
    height: auto;          /* ajusta la altura según te guste */
    object-fit: cover;      /* recorta sin deformar */
    border-radius: 5px;
    margin-top: 15px;
    display: block;
}
h4{
    text-align: center;
    font-size: larger;
    color: #036635; 
}
#texto1{
    padding: 30px 40px;
    text-align: justify;
    color: black;
    background-color: rgb(227, 213, 187);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(48, 47, 47);
}
#texto2{
    padding: 30px 40px;
    text-align: justify;
    color: black;
    background-color: rgb(227, 213, 187);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(48, 47, 47);
}
#formulario{
    padding: 30px 50px;
    font-size: small;
    color: black;
    background-color: rgb(227, 213, 187);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(48, 47, 47);
}
#formulario h4{
    text-align: center;
    font-size: 20px;
    color: #036635;
}

input{
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border-radius: 6px;
  
}
#boton input{
    background-color: black;
    color: white;
    font-weight: 90%;
    filter: contrast(0.6);
    transition: filter 0.4s ease, transform 0.3s ease;
}
#boton input:hover{
    filter: none;
    transform: scale(1.03);  
}

/*PIE DE PAGINA*/
#piepagina{
    grid-area: c;
    text-align: center;
    background-color: #1E3A31;
    color: white;
}
footer{
    font-size: 1.0rem;
    transition: 0.3s;
    
    margin-top: 0.1px;
}
footer p{
    
    margin-top: 1%;
    font-size: small;
}

.redes ul{
    display: flex;
    justify-content: center;
    list-style: none;
    position: relative;
    top: 0;
    margin-top: 1%;
    margin-bottom: 1%;
}
.redes ul li a{
    text-decoration: none;
    color: white;
    background-color: black;
    display: block;
    margin: 1px;
    padding: 5px;
    height: 30px;
    text-align: center;
    align-content: center;
    border-radius: 50%;
    transition: all 0.3s ease; 
}
.redes ul li a:hover{
    background-color: #5c5c5c; 
    transform: translateY(2px) scale(0.95); 
    filter: brightness(1.1);
}