@import url('faamilyRoboto.css');

:root {
    --fuente-principal: 'Roboto', sans-serif;
    --color-principal: #455a64;
    --bk1: 700px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--fuente-principal);
    color: var(--color-principal);
    line-height: 1.5;
}

.contenedor {
    max-width: 1170px;
    margin: 0 auto 1rem;
    padding: 1.5rem;
}

.wrapper {
    box-shadow: 0 0 20px 0 rgba(69, 90, 100, 0.7);
    border-radius: 5px;
}

@media screen and (min-width: var(--bk1)) {
    .wrapper {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }
}

.servicios {
    list-style: none;
    text-align: center;
}

@media screen and (min-width: var(--bk1)) {
    .servicios {
        text-align: left;
    }
}

.logo {
    text-align: center;
    margin-bottom: 1rem;
}

.info-empresa {
    padding: 1rem;
    background-color: rgba(69, 90, 100, 0.1); /* Lighten color */
}

.info-empresa h3 {
    text-align: center;
}

@media screen and (min-width: var(--bk1)) {
    .info-empresa h3 {
        text-align: left;
        margin-bottom: 0.5rem;
    }
}

.nombre-empresa {
    color: #3c4f55; /* Darken color */
}

.contacto {
    padding: 1rem;
    background-color: rgba(69, 90, 100, 0.2); /* Lighten color */
}

.contacto h3 {
    margin-bottom: 1rem;
}

.formulario {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.25rem;
}

.formulario label {
    display: block;
}

.formulario button,
.formulario input,
.formulario textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(69, 90, 100, 0.1); /* Lighten color */
}

.formulario textarea {
    resize: none;
}

.full {
    grid-column: 1 / 3;
}

.boton-enviar {
    background-color: rgba(69, 90, 100, 0.1); /* Lighten color */
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 2s ease-out;
}

.boton-enviar:focus,
.boton-enviar:hover {
    background-color: var(--color-principal);
    color: #fff;
    outline: 0;
}
