@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --brandPrimaryColor: #1687aa;
    --brandSecondaryColor: #0b4455;
    --brandBlack: #000000;
    --brandWhite: #ffffff;
    --colorTexts: #49454567;
}

html{
    scroll-behavior: smooth;
}

a{
    list-style: none;
    text-decoration: none;
}

/* INMACULADO 1366 x 768 */


.contact{
    background-color: var(--brandPrimaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainContact{
    width: 64%;
    height: 70%;
    margin: 4rem 0 0 0;
    /* border: 1px solid black; */
    display: flex;
    flex-direction: row;
}




/* formulario */
form{
    width: 60%;
    height: 100%;
    margin: auto;
    /* background-color: var(--brandPrimaryColor); */
    background-color: var(--brandWhite);
    /* border: 1px solid orange; */
    font-family: 'Roboto', sans-serif;
    color: var(--brandPrimaryColor);
    padding: 0 0 0 1rem;
}

form .formGroup{
    position: relative;
    /* margin: 45px; */
    margin: 1.5rem 0 0 0;
    /* border: 1px solid red; */
}

.formContact{
    width: 100%;
}

.formContact h1{
    display: inline;
    font-size: 5rem;
    color: var(--brandBlack);
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: lighter;
    text-align: right;
    margin: 3rem 0 2rem 0;
    line-height: 7rem;
}

input, textarea{
    background: none;
    color: var(--brandBlack);
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width:80%;
    border: none;
    border-bottom: 1px solid var(--colorTexts);
    resize: none;
}

input:focus, textarea:focus{
    outline: none;
    /* color: rgb(94, 93, 93); */
    color: black;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label{
    position: absolute;
    top: -14px;
    font-size: 12px;
    /* color: #2196f3; */
    color: var(--brandSecondaryColor);
}

label{
    color: var(--colorTextos);
    font-size: 16px;
    position: absolute;
    left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    pointer-events: none;
}

.barra{
    position: relative;
    display: block;
    width: 100%;
}

.barra::before{
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, var(--brandPrimaryColor), var(--brandSecondaryColor));
    transition: 0.3s ease all;
    left: 0%;
}

.btn{
    
    display: block;
    width: 100px;
    height: 40px;
    /* border: none; */
    border: 2px solid var(--brandPrimaryColor);
    background-color: white;
    color: var(--brandPrimaryColor);
    border-radius: 4px;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
}

.btn:hover{
    background-color: #0b4455;
    color: var(--brandWhite);
    scale: 1.1;
    transition: 0.3s all;
}




.formImage{
    width: 40%;
    height: 100%;
    /* border: 1px solid orange; */
}
.formImage{
    background-image: url('../images/detalle.png');
    background-size: cover;
    object-fit: cover;
}