/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alexandria', sans-serif;
    color: #3D3935;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

h2, h3, h4, h5 {
    font-weight: 400;
}

a {
    text-decoration: none;
    color: #3D3935;
}

p {
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    text-align: justify;
}

body {
    background-color: #D1D0CA;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}


/* Header */
.header-title, .nav {
    height: 60px;
    text-align: center;
}

.header-title h1 {
    line-height: 60px;
    text-transform: uppercase;
    font-size: 20px;
}

.nav ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 11fr));
    grid-template-rows: 60px;
    list-style: none;
    border-top: #B5B0AC 1px solid;
    border-bottom: #B5B0AC 1px solid;
}

.nav ul li {
    border-right: #B5B0AC 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nav ul li:last-child {
    border-right: none;
}

.nav-link-btn {
    background-color: #9A8D83;
    color: #EBEAE6;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}


/* Hero */
.hero {
    height: calc(100vh - 120px);
    min-height: 500px;
    width: 100%;
    background-image: url(/img/hero.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 50vw;
    max-width: 640px;
    margin-left: 5vw;
}

.hero-content h2 {
    font-size: 24px;
}

/* Caption */
.caption {
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caption-content {
    width: 50vw;
    max-width: 720px;
}

.caption-content p {
    font-style: italic;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 60px;
    text-align: center;
}

.btn {
    font-weight: 300;
    border: 1px solid #716E69;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    width: 210px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background-color 0.3s ease-in-out;
}
.btn-light {
    border: #EBEAE6 1px solid;
}
.btn:hover {
    background-color: #c5c4bb;
}


/* Subtitle */
.subtitle {
    border-top: #B5B0AC 1px solid;
    border-bottom: #B5B0AC 1px solid;
}
.subtitle-content {
    height: 70px;
    text-align: center;
}
.subtitle-content h2 {
    line-height: 70px;
    font-weight: 300;
    font-size: 20px;
    font-style: italic;
}
.dark-bg {
    background-color: #98978D;
}
.text-light h2, .text-light p, .text-light a, .text-light li, .text-light span .text-light h3, .text-light small {
    color: #EBEAE6;
}

/* About */
.about {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 120px 0 50px;
}
.about-picture {
    text-align: center;
}
.about-picture img {
    width: 90%;
}
.about-content {
    width: 80%;
    max-width: 800px;
    margin-left: 8%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}
.about-content a {
    margin: 24px 0 0 0;
}
.about-content h3 {
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 24px;
}
.about-content p {
    margin-bottom: 18px;
}
.about-caption {
    width: 80%;
    max-width: 800px;
    margin-left: 8%;
    margin-top: 120px;
}
.about-caption p {
    font-style: italic;
    font-size: 20px;
    line-height: 28px;
}

/* Specialties */
.services {
    display: grid;
    grid-template-columns: 3fr 5fr;
    grid-template-rows: max-content;
}
.services-picture {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.services-list-item {
    padding: 50px;
    border-bottom: #B5B0AC 1px solid;
}
.services-list-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}
.services-list-item p {
    margin-bottom: 18px;
}

/* Contact */
.contact {
    border-top: #EBEAE6 1px solid;
    border-bottom: #EBEAE6 1px solid;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact-picture {
    height: 50vw;
    max-height: 800px;
    background-image: url(/img/contacto.jpg);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-content {
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.contact-actions a {
    width: 100%;
}
.contact-actions-info {
    grid-column-start: 1;
    grid-column-end: 4;
}
.contact-caption p {
    font-style: italic;
    font-size: 20px;
    line-height: 28px;
}

/* Footer */
.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footer-title {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 40px;
}
.footer-title-logo img {
    height: 50px;
    margin-right: 10px;
}
.footer-title h3 a {
    font-size: 28px;
    text-transform: uppercase;
}
.footer-content {
    padding: 60px 40px 30px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footer-content-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.footer-content-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 38px;
}

/* Sobre mi */
.sobremi-title {
    text-align: center;
    height: 90px;
    padding: 18px 0;
    border-bottom: #B5B0AC 1px solid;
}
.sobremi-title h1 {
    font-weight: 300;
    font-style: italic;
}
.sobremi-title p {
    font-style: italic;
    color: #5d5955;
    margin-top: 4px;
}
.sobremi-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 70px 0 100px;
    width: 90vw;
    max-width: 1600px;
    margin: 0 auto;
}
.sobremi-content h2 {
    font-weight: 300;
    margin-bottom: 32px;
}
.sobremi-content p {
    margin-bottom: 18px;
    line-height: 24px;
}
.sobremi-picture img {
    width: 100%;
}
.sobremi-caption {
    margin-top: 100px;
}
.sobremi-caption p {
    font-style: italic;
    font-size: 20px;
    line-height: 28px;
}

/* Form */
.form {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.form-picture {
    background-image: url(/img/lucia_silvoso_reunion_consulta.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}
.form-picture-title {
    display: flex;
    gap: 18px;
    padding: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.form-picture-title svg {
    height: 18px;
}
.form-picture-title h1 {
    line-height: 32px;
    padding-top: 2px;
    text-transform: uppercase;
}
.form-picture-title a {
    font-weight: 300;
}
.form-content {
    padding: 10vh 10vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 60px;
}
.form-content-desc h1 {
    font-weight: 300;
}
.form-content-inputs form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-content-inputs label {
    text-transform: uppercase;
}
.form-content-inputs input {
    height: 40px;
}
.form-content-inputs input, .form-content-inputs textarea {
    display: block;
    width: 100%;
    border: #3D3935 1px solid;
    background-color: transparent;
    margin-top: 5px;
    padding: 5px 10px;
    font-size: 17px;
}
.form-content-inputs .cols-1 {
    grid-column-start: 1;
    grid-column-end: 3;
}
.form-content-inputs input[type="submit"] {
    width: 200px;
    margin: 0 auto;
    background-color: #9A8D83;
    color: #EBEAE6;
    border: 0;
}
.footer-lang-box {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 6px;
    background-color: #c6bfb9;
    border-radius: .33rem;
    color: #635142;
    cursor: pointer;
}
.footer-lang-box img {
    height: 18px;
}

@media only screen and (max-width: 1220px) {
    .footer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .form {
        grid-template-columns: 420px auto;
    }
    .form-content {
        padding: 10vh 40px;
    }
    .form-content-desc h1 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1020px) {
    .nav-link-btn {
        width: 100%;
        height: 60px;
    }
    .contact {
        display: block;
    }
    .contact-caption {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 920px) {
    .about {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .about-caption {
        margin-top: 50px;
    }
    .sobremi-body {
        display: flex;
        flex-direction: column;
    }
    .form {
        display: flex;
        flex-direction: column;
    }
    .form-picture {
        height: 300px;
    }
}

@media screen and (max-width: 800px) {
    .nav-list {
        display: flex !important;
        flex-direction: row;
        overflow: auto;
        white-space: nowrap;
    }
    .nav-item a {
        min-width: 160px;
    }
    .hero {
        max-height: 150vw;
    }
    .hero-content {
        width: 80vw;
        max-width: 480px;
    }
    .caption-content {
        width: 80vw;
    }
}

@media screen and (max-width: 720px) {
    .services {
        display: block;
    }
    .services-picture {
        height: 50vw;
    }
}

@media screen and (max-width: 600px) {
    .caption-content {
        width: 90vw;
    }
    .caption-content p {
        font-size: 18px;
    }
    .caption {
        height: 480px;
    }
    .contact-actions {
        display: flex;
        flex-direction: column;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .footer-title h3 a {
        font-size: 24px;
    }
    .form-content-inputs form {
        display: flex;
        flex-direction: column;
    }
}