body{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat',sans-serif;
}

header,footer{
       
        background-color: #9D2447;
}

header{
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 1;
    margin: 0;
    top: 0;
    padding: 10px 10px;
    
     
}


.modal{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 10;
    background-color: #25252586;
    display: none;
}

.modal-resultado{
      width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 10;
    background-color: #25252586;
    display: none;
     overflow-y: scroll;
}

.material-symbols-outlined{
    cursor: pointer;
}


.contenedor-modal{
    width: 50%;
    margin: 0 auto;
    margin-top: 130px;
    background-color: white;
   
}

.contenedor-info{
    width: 50%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 80px;
    background-color: white;
   
}
.encabezado-modal{
    background-color: #9D2447;
    color: white;
    padding: 20px 15px;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
}


.cuerpo{
    padding: 20px 10px;
}

.info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.info label{
    font-weight: bold;
}
.info input{
    border: 1px solid rgb(231, 231, 231);
    font-size: 1rem;
    padding: 10px 20px;
}
.contenedor-img{

    width: 15%;
    max-width: 400px !important;
    height: 60px;
    display: flex;
    justify-content: left;
}
.contenedor-img img{
    width: 100%;
    max-width: 800px !important;
      filter: brightness(1);
      object-fit: contain;
}


main{
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
    min-height: 80vh;
    height: max-content;
    z-index: 1;


}

.contenedor-principal{
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    gap: 40px;
    margin-bottom: 20px;
}
.encabezado{
    text-align: center;
}
.rojo{
        font-family: Montserrat, sans-serif;
    font-size: 1.5rem !important;
    font-weight: 800;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #9d2447 !important;
    margin-top: 14px;
}
.subtitulo{    
    font-size: 1.225rem !important;
    color: #545454 !important;
    margin-top: 4px;
}

.presentacion{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    margin: 0 auto;
}
.presentacion h1{
        margin: 0 0 25px !important;
    font-size: 1.75rem;
    color: #5a5a5a !important;
    text-align: center;
    font-weight: 500;
}
.presentacion img{
    width: 40%;
    margin: 0 auto;
}

.formulario {
    display: flex;
    gap: 20px;
}
.formulario input{
    width: 60%;
    height: 40px;
}
.presentacion input > ::placeholder{
    padding: 10px 60px;
}
.formulario button{
    width: 40%;
    background-color: #9D2447;
    color: white;
    border: 0;
    font-weight: 700;

}


footer{
    bottom: 0;
    padding: 20px;
}

.contenedor{
    width: 90%;
    margin: 0 auto;
    display: flex;
    color: white;
    padding: 10px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.lad1{
     padding: 10px 20px;
}
.lad1 img{
    display: flex;
    width: 60%;
      filter: brightness(2);
      max-width: 800px;
}


.animar-entrada {
    animation: entradaModal 0.4s ease forwards;
}

@keyframes entradaModal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



@media (max-width:769px) {
        .contenedor-modal{
            width: 80%;
          
        }
        .contenedor{
            flex-direction: column;
            align-items: last baseline;
            gap: 20px;
        }
        .contenedor-img{
            width: 40%;
        }
        .presentacion{
            width: 100%;
        }
        .presentacion img{
            width: 100%;
        }

        .contenedor-info{
            width: 70% ;
        }
    }

@media (max-width:992px) {
    .contenedor-modal{
            width: 80%;
          
        }

           .contenedor{
            flex-direction: column;
            align-items: last baseline;
            gap: 20px;
        }
    }

