*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

#contenedor{
    width:100%;
    
    padding: 5px;
    text-align: center;
    background-image: url("img/crema.webp");
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
}

#contenedor p{
     font-size: 1.1em;
    margin: 0 auto;
    font-family:cursive;
    color: whitesmoke; 
    text-align: center;

}

#contenedor h1{
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8em;
    color: white;           
    margin-bottom: 10px;
    text-transform: uppercase;

}
main {
    position: relative; 
    padding: 200px;
   
}

main p{
     font-size: 20px;
    color: black;
    text-align: justify;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    text-align: center;
} 



main ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px;
}

main ul li a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.iconos {
    margin-top: 40px;
    text-align: center;
}



.iconos a {
    color: wheat;
    font-size: 1.8em;
    margin: 0 10px;
    transition: 0.3s;
} 



#Content{
    width:100%;
    margin:20px auto;
    
    padding: 5px;
    text-align: center;
    
}

header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;                      
    background-color: pink;
    z-index: 1000;
    text-align: center;
    padding: 15px 0;
    
}


header h1 {
    font-family: "Cinzel", serif;
    font-size: 5em;
    color: blanchedalmond;           
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: 0.4 ease;
    cursor: pointer;

}

header h1:hover{
    text-shadow: 0 0 10px #fff;
              
    color: whitesmoke;
}


header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    text-decoration: none;
    
    font-size: 1em;
    color: dimgray;
    font-weight: 500;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    color:olive;
    border-bottom: 2px solid #8b4513;
}

#titulo{
     display: flex;               /* Pone el h1 y subtítulo en la misma línea */
    justify-content: center;     /* Centra todo horizontalmente */
    align-items: center;         /* Alinea verticalmente */
    gap: 20px;                   /* Espacio entre el título y la imagen */
    margin-bottom: 10px;
}

#titulo h1{
       font-family: "Cormorant Garamond", serif;
    font-size: 2.8em;
    color: black;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}
.imagen{
    width: 80%;
    display: block;
    border-radius: 10px;
    margin: 0px auto 20px auto; /* Espacio ajustado respecto al header */
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* sombra leve */
    filter: brightness(0.98); /* filtro básico */
}

.aplicacion{
    float: left;
    width: 180px;
    margin: 10px 15px 10px 0;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    

}
.titulo{
    color: black;
    font-size: 2eme;
    margin: 0;
    text-align: center;
} 

.subtitulo {
    display: flex;
    flex-direction: column;
    align-items: center;

    }

.natura  {
    width: 80px;
    border-radius: 50%;
}


.milagros p {
    font-size: 0.9em;
    color: blue;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    margin-top: 5px;
}

.iconos2 {
    margin-top: 10px;
    text-align: center;
}

.redes-sociales p {
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
    text-align: justify;
}



.iconos2 a {
    color: black;
    font-size: 1.8em;
    margin: 4px;
    transition: 0.3s;
    padding: 1px;
}

.iconos2 a:hover{
    color: olive;
} 

#filtros{
    Display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5px; 
    gap: 20px;
    text-align: center;
} 

#filtros img{
            width: 250px;
            margin: 10px;
}

#filtros img:hover{
    filter: brightness(1.2);
} 

#filtro1{
    filter: opacity(70%) drop-shadow(5px 5px 8px);

}

#filtro2 {
    filter: sepia(50%)drop-shadow(5px 5px 8px);

} 

#filtro3{
    filter: grayscale(90%) drop-shadow(5px 5px 8px);


}
#filtro4{
    filter: hue-rotate(90deg)drop-shadow(5px 5px 8px); 

} 
#filtro5{
    filter: blur(2px)drop-shadow(5px 5px 8px);  

}
#filtro6{
    filter: contrast(30%)drop-shadow(5px 5px 8px);  

}

.video-responsive{ /*contenedor del video*/
    position: relative;/* Muy importante para posicionar el iframe o etiqueta video */
    height: 0;/* Se establece en 0 para que la altura sea determinada por el padding */
    padding-bottom: 56.25%;/* Esto crea el espacio vertical 16:9 */
    border:1px solid var(--color3);  
    margin: 10px;
}
.video{
    position: absolute;/* El iframe se posiciona de forma absoluta dentro del contenedor */
    top:0;
    left:0;
    width: 100%;
    height: 100%; /* El iframe o etiqueta video ocupa todo el espacio definido por el padding */
}



