/* Seccion bienvenida de CONTACTO */

section #contact_article_welcome {
    font-family: 'Century Gothic';
    width: 100%;
    height: 500px;
    margin: 0px auto;
    margin-top: -250px;
    padding-top: 20%;
    text-align: center;
    box-shadow: 2px 0px 20px black;


}

#contact_article_welcome {
    box-shadow: none !important;


}

#contact_article_welcome {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/contact_background.jpg);
    background-size: 125%;
    background-attachment: fixed;
    background-position:center 0%;
    background-repeat: no-repeat;
    transition: background-size 0.1s background-position 0.1s ease-in-out;
}

@keyframes blurOut {
    0% {
        filter: blur(5px)
    }

    35% {
        filter: blur(5px)
    }

    200% {
        filter: blur(0px)
    }

}

#contact_article_welcome h1,
p {
    margin: 0px auto;
    animation: blurOut 700ms;
    animation-iteration-count: initial;
    animation-timing-function: ease-in-out;

}



#contact_article_welcome h1 {
    font-family: 'Century Gothic';
    text-transform: capitalize;
    width: 100%;
    font-size: 70px;
    text-shadow: 1px 5px 10px #333;
    letter-spacing: 2px;
    margin-top: 100px;
    padding-top: 90px;

}



#contact_article_welcome p {
    width: 50%;
    margin-top: 23px;
    font-size: 23px;
    text-shadow: 1px 2px 3px #333;
    letter-spacing: 1px;

}

/* Sección contact description */
section #article_contact_description {
    display:grid;
    grid-template-columns: 40% 60%;
    grid-template-areas: "contact form";
    font-family: 'Century Gothic';
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0px auto;
    padding-top: 3%;
    padding-bottom: 2%;
    text-align: center;
    box-shadow: 2px 0px 20px black;

}

#article_contact_description {
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    text-align: center;

}


#article_contact_description p {
    color: black;
    font-weight: normal;
    width: 70%;
    margin: 0px auto;
    font-size: 20px;
    padding-top: 20px;
    letter-spacing: 1px;

}

.contact_social {
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact_social img {
    width: 40px;
    margin-left: 1%;
    margin-right: 1%;
}

.contact_social img:hover{
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.438));
}

/* Sección de Contacto */


#article_contact {
    grid-area: "form";
    justify-self: center;
    color: black;
    font-family: 'Century Gothic';
    width: 100%;
    height: 100%;
    margin: 0px auto;
    margin-top: 0;
    padding-top: 0%;
    padding-bottom: 10%;
    text-align: center;


}

.grid_contact{
    grid-area: "contact";
    justify-self: center;
    margin-left: 10%;
}
.grid_contact h2 {
    font-weight: bolder;
    font-size: 40px;
    text-transform:capitalize;
    color: black;
    margin-bottom: 30px;

}


#formulario_fisica {
    background-color: rgba(255, 255, 255, 0.5);
    width: 80%;
    margin: 0px auto;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    border-radius: 5px;
    max-height: 580px;
    padding-top: 30px;
    display: none;
    opacity: 0;
    height: 0;
    /* Inicialmente, el formulario tiene altura cero */
    overflow: hidden;
    /* Ocultar el contenido que exceda la altura */
    transition: height 0.8s ease-in-out;
    /* Transición de altura suave */
}


#formulario_juridica {
    background-color: rgba(255, 255, 255, 0.5);
    width: 80%;
    margin: 0px auto;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    border-radius: 5px;
    max-height: 580px;
    padding-top: 30px;
    display: none;
    opacity: 0;
    height: 0;
    /* Inicialmente, el formulario tiene altura cero */
    overflow: hidden;
    /* Ocultar el contenido que exceda la altura */
    transition: height 0.8s ease-in-out;
    /* Transición de altura suave */
}



label {
    color: black;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    color: black;
    width: 80%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    font-size: large;
    background-color: #25364f;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px 15px;
    cursor: pointer;
    margin-top:10px;
}

button[type="reset"] {
    background-color: #aaa;
    margin-left: 10px;
}



button:hover {
    /* text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.966); */
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.438));
}
