@import url(base.css);
.contacto{
    padding: 40px;
}
.contacto h1{
    color: var(--azulMedio);
    font-weight: bold;
    font-size: 40px;
    text-align: center;
}
.contacto h2{
    color: var(--azulOscuro);
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 40px;
}
.contactoCont{
    max-width: 1200px;
    margin: auto;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: stretch;
}
form{
    width: 580px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 10px 10px 6px rgba(0, 0, 0, 0.15), -10px -10px 6px white;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    gap: 20px;
}
.form-group{
    width: 100%;
}
.form-group p{
    color: var(--azulMedio);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
.form-group input,
.form-group textarea{
    border: 3px var(--gris) solid;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    color: var(--azulOscuro);
}
.form-group input::placeholder,
.form-group textarea::placeholder{
    color: rgba(0, 0, 0, 0.3);
    font-size: 16px;
}
.form-group input:focus,
.form-group textarea:focus{
    outline: none;
    border-color: var(--azulMedio);
}
form button{
    cursor: pointer;
}
.right{
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    height: 100%;
    gap: 40px;
}
.directo{
    box-shadow: 10px 10px 6px rgba(0, 0, 0, 0.15), -10px -10px 6px white;
    width: 580px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    gap: 20px;
}
.directo h3{
    color: var(--azulMedio);
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
.datos{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: stretch;
    width: 100%;
}
.dato{
    cursor: pointer;
}
.dato, .horario{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    gap: 10px;
}
.dato p, .horario p{
    color: var(--azulOscuro);
    font-size: 20px;
}
.dato i, .horario i{
    color: var(--azulMedio);
    font-size: 20px;
}
.directo hr{
    height: 3px;
    width: 100%;
    background-color: var(--gris);
}
.maps{
    box-shadow: 10px 10px 6px rgba(0, 0, 0, 0.15), -10px -10px 6px white;
    overflow: hidden;
    border-radius: 20px;
}
@media only screen and (min-width: 0px) and (max-width: 1200px){
    .contacto h1{
        font-size: 30px;
    }
    .contacto h2{
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .contacto{
        padding: 20px;
    }
    .contactoCont{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        align-content: stretch;
        gap: 20px;
    }
    .left, .right, .directo{
        width: 100%;
    }
    form{
        width: 100%;
        gap: 10px;
    }
    .datos{
        flex-direction: column;
        gap: 10px;
    }
    .dato{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 10px;
        width: 100%;
    }
    .dato p, .horario p{
        font-size: 16px;
        text-align: center;
    }
    .maps{
        width: 100%;
    }
    .maps iframe{
        width: 100% !important;
    }
}