* {
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #333456;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding: 0;
}

.content {
    padding: 0 1.5em;
}

.container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5em;
}

ul {
    list-style: none;
    padding: 0;
}

.logo {
    text-align: center;
    font-size: 5em;
}

.logo span {
    color: #C59035;
}

.contact-wrapper {
    box-shadow: 0 0 30px 0 #333456;
}

.contact-wrapper > * {
    padding: 1em;
}

.contact-form {
    background: #ffffff;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-form form label {
    display: block;
}

.contact-form form p {
    margin: 0;
    padding: 1em;
}

.contact-form form .block {
    grid-column: 1 / 3;
}

.contact-form form input[type="text"], 
.contact-form form input[type="email"], 
.contact-form form input[type="number"],
.contact-form form textarea {
    width: 100%;
    padding: .7em;
    border: none;
    background: none;
    outline: 0;
    color: #333456;
    border-bottom: 1px solid #C59035;
}

.contact-form form select {
    width: 100%;
    padding: .7em;
    border: 1px solid #C59035;
    background-color: #ffffff;
    outline: 0;
    color: #333456;
    border-radius: 5px;
}

.contact-form form select option {
    background-color: #ffffff;
    color: #333456;
}

.contact-form form select option:checked {
    background-color: #C59035;
    color: #333456;
}

.contact-form form button {
    background: #C59035;
    border: 0;
    text-transform: uppercase;
    padding: 1em;
}

.contact-form form button input[type="submit"] {
    width: auto;
    background: none;
    border: none;
    color: #fff;
    padding: 0;
}

.contact-form form button:hover,
.contact-form form button:focus {
    background: #C59035;
    color: #fff;
    transition: background-color .5s ease-out;
    outline: 0;
}

.contact-info {
    background: #ffffff;
}

.contact-info h4,
.contact-info ul,
.contact-info p {
    text-align: center;
    margin: 0 0 1rem 0;
}

.btn-contacto a {
    text-decoration: none;
    font-size: 14px;
    color: #C59035;
}

.btn-back {
    color: #C59035;
}

.btn-custom {
    background-color: #C59035;
    color: white;
    border-radius: 20px;
    padding: 8px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-custom input[type="submit"] {
    background: none;
    border: none;
    color: white;
    padding: 0;
    margin: 0;
    width: auto;
}

.contact-form form p.block {
    text-align: center;
}

footer {
    background-color: #333456;
    color: #C59035;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #C59035;
    text-decoration: none;
}

footer a:hover,
footer a:focus {
    color: #FFD700;
}

footer li {
    list-style-type: none;
}

.footer-row {
    margin-right: 0;
    margin-left: 0;
}

/* Reglas nuevas para espaciado del menu */

.navbar-nav .nav-link {
    color: #333456;
    font-weight: 600;
    margin: 0 10px;
    margin-left: 50px;
    margin-right: 50px;
 }

.navbar-nav .nav-link.active {
    background-color: #C59035;
    border-radius: 20px;
    padding: 5px 15px;
    color: #fff;
}


@media(min-width: 700px) {
    .content {
        padding: 0 4em;
    }
    .contact-wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .contact-wrapper > * {
        padding: 2em;
    }
    .contact-info h4,
    .contact-info ul,
    .contact-info p {
        text-align: left;
    }
}