/* =========================================================
   CONTACTO-0001A
   HERO
   ========================================================= */

.contacto-hero {
    position: relative;

    min-height: 610px;

    overflow: hidden;

    color: #ffffff;
}


.contacto-hero__background {
    position: absolute;

    inset: 0;

    background-image:
        url('/assets/img/contacto/herocontacto.jpg');

    background-size: cover;

    background-position: center center;
}


.contacto-hero__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 18, 11, 0.82) 0%,
            rgba(7, 18, 11, 0.60) 48%,
            rgba(7, 18, 11, 0.24) 100%
        );
}


/* =========================================================
   NAVEGACIÓN
   ========================================================= */

.contacto-nav {
    position: relative;

    z-index: 10;

    width: min(1240px, calc(100% - 70px));

    height: 120px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.contacto-nav__logo img {
    display: block;

    width: 230px;
    height: auto;
}


.contacto-nav__menu {
    display: flex;

    align-items: center;

    gap: 36px;
}


.contacto-nav__menu a {
    position: relative;

    display: flex;

    min-height: 52px;

    align-items: center;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}


.contacto-nav__menu a::after {
    content: '';

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: #d5ad6b;

    transform: scaleX(0);

    transition: transform 0.25s ease;
}


.contacto-nav__menu a:hover::after,
.contacto-nav__menu a.active::after {
    transform: scaleX(1);
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.contacto-hero__content {
    position: relative;

    z-index: 5;

    width: min(1240px, calc(100% - 70px));

    margin: 55px auto 0;
}


.contacto-hero__eyebrow {
    margin-bottom: 18px;

    color: #d9b477;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.contacto-hero__content h1 {
    max-width: 760px;

    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 62px;
    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -1px;
}


.contacto-hero__content p {
    max-width: 720px;

    margin: 24px 0 0;

    font-size: 17px;
    line-height: 1.65;
}


.contacto-hero__button {
    display: inline-flex;

    min-height: 56px;

    margin-top: 30px;

    padding: 0 25px;

    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: #d5ad6b;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}


.contacto-hero__button:hover {
    background: #c69b58;

    transform: translateY(-1px);
}


/* =========================================================
   FRANJA INFORMATIVA
   ========================================================= */

.contacto-beneficios {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    padding: 28px 35px;

    background: #f8f5ee;
}


.contacto-beneficios__item {
    min-height: 125px;

    padding: 5px 35px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-right:
        1px solid rgba(48, 58, 43, 0.20);
}


.contacto-beneficios__item:last-child {
    border-right: 0;
}


.contacto-beneficios__icon {
    margin-bottom: 7px;

    color: #c9a361;

    font-size: 30px;
    line-height: 1;
}


.contacto-beneficios__item strong {
    color: #24351f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 20px;

    font-weight: 500;
}


.contacto-beneficios__item span {
    max-width: 360px;

    margin-top: 5px;

    color: #62635f;

    font-size: 14px;
    line-height: 1.45;
}


/* =========================================================
   NOTEBOOK
   ========================================================= */

@media (max-width: 1100px) {

    .contacto-nav {
        width: calc(100% - 40px);
    }


    .contacto-nav__logo img {
        width: 200px;
    }


    .contacto-nav__menu {
        gap: 18px;
    }


    .contacto-nav__menu a {
        font-size: 12px;
    }


    .contacto-hero__content {
        width: calc(100% - 60px);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .contacto-hero {
        min-height: 650px;
    }


    .contacto-nav {
        height: auto;

        padding-top: 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .contacto-nav__menu {
        width: 100%;

        flex-wrap: wrap;

        gap: 5px 22px;
    }


    .contacto-hero__content {
        margin-top: 70px;
    }


    .contacto-hero__content h1 {
        font-size: 50px;
    }


    .contacto-beneficios__item {
        padding-left: 20px;
        padding-right: 20px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .contacto-hero {
        min-height: 680px;
    }


    .contacto-hero__background {
        background-position: 58% center;
    }


    .contacto-hero__overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(7, 18, 11, 0.56) 0%,
                rgba(7, 18, 11, 0.66) 50%,
                rgba(7, 18, 11, 0.88) 100%
            );
    }


    .contacto-nav {
        width: calc(100% - 35px);
    }


    .contacto-nav__logo img {
        width: 175px;
    }


    .contacto-nav__menu {
        gap: 5px 14px;
    }


    .contacto-nav__menu a {
        min-height: 34px;

        font-size: 10px;
    }


    .contacto-hero__content {
        width: calc(100% - 40px);

        margin-top: 70px;
    }


    .contacto-hero__eyebrow {
        margin-bottom: 12px;

        font-size: 11px;
    }


    .contacto-hero__content h1 {
        font-size: 40px;
        line-height: 1.08;
    }


    .contacto-hero__content p {
        margin-top: 20px;

        font-size: 15px;
        line-height: 1.6;
    }


    .contacto-hero__button {
        min-height: 54px;

        margin-top: 27px;

        padding: 0 20px;

        font-size: 14px;
    }


    .contacto-beneficios {
        grid-template-columns: 1fr;

        padding: 15px 20px;
    }


    .contacto-beneficios__item {
        min-height: 125px;

        padding: 20px 10px;

        border-right: 0;

        border-bottom:
            1px solid rgba(48, 58, 43, 0.20);
    }


    .contacto-beneficios__item:last-child {
        border-bottom: 0;
    }

}

/* =========================================================
   CONTACTO-0001B
   FORMULARIO + CONTACTO DIRECTO
   ========================================================= */

.contacto-consulta {
    padding: 90px 35px 100px;

    background: #ffffff;
}


.contacto-consulta__container {
    width: min(1240px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(320px, 0.75fr);

    gap: 75px;

    align-items: start;
}


/* =========================================================
   CABECERA FORMULARIO
   ========================================================= */

.contacto-consulta__eyebrow,
.contacto-directo__eyebrow {
    margin-bottom: 9px;

    color: #bb965d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.6px;
}


.contacto-consulta__formulario h2 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    color: #24351f;

    font-size: 46px;
    line-height: 1.1;

    font-weight: 500;
}


.contacto-consulta__intro {
    max-width: 650px;

    margin: 17px 0 34px;

    color: #60625d;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   FORMULARIO
   ========================================================= */

.contacto-form__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 21px 24px;
}


.contacto-form__field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.contacto-form__field--full {
    grid-column: 1 / -1;
}


.contacto-form__field label {
    color: #303b2d;

    font-size: 13px;
    font-weight: 700;
}


.contacto-form__field input,
.contacto-form__field select,
.contacto-form__field textarea {
    width: 100%;

    border:
        1px solid #d8d5cd;

    border-radius: 4px;

    outline: none;

    background: #ffffff;

    color: #343a32;

    font: inherit;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.contacto-form__field input,
.contacto-form__field select {
    height: 52px;

    padding: 0 15px;
}


.contacto-form__field textarea {
    min-height: 125px;

    padding: 14px 15px;

    resize: vertical;

    line-height: 1.5;
}


.contacto-form__field input::placeholder,
.contacto-form__field textarea::placeholder {
    color: #9a9b97;
}


.contacto-form__field input:focus,
.contacto-form__field select:focus,
.contacto-form__field textarea:focus {
    border-color: #bb965d;

    box-shadow:
        0 0 0 3px rgba(187, 150, 93, 0.10);
}


/* =========================================================
   BOTÓN
   ========================================================= */

.contacto-form__button {
    min-height: 56px;

    margin-top: 28px;

    padding: 0 28px;

    border: 0;
    border-radius: 4px;

    background: #24351f;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.7px;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.contacto-form__button:hover {
    background: #334b2c;

    transform: translateY(-1px);
}


/* =========================================================
   COLUMNA CONTACTO DIRECTO
   ========================================================= */

.contacto-directo {
    padding: 42px 38px;

    border-radius: 8px;

    background: #f7f4ed;
}


.contacto-directo h3 {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    color: #24351f;

    font-size: 31px;
    line-height: 1.18;

    font-weight: 500;
}


.contacto-directo__texto {
    margin: 17px 0 29px;

    color: #60625d;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   DATOS
   ========================================================= */

.contacto-directo__datos {
    display: flex;

    flex-direction: column;
}


.contacto-directo__dato {
    min-height: 78px;

    padding: 15px 0;

    display: flex;

    align-items: center;

    gap: 16px;

    border-bottom:
        1px solid rgba(36, 53, 31, 0.13);

    color: inherit;

    text-decoration: none;
}


.contacto-directo__dato:first-child {
    border-top:
        1px solid rgba(36, 53, 31, 0.13);
}


.contacto-directo__icono {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(187, 150, 93, 0.55);

    border-radius: 50%;

    color: #a98249;

    font-size: 19px;
}


.contacto-directo__dato small {
    display: block;

    margin-bottom: 3px;

    color: #898a84;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.3px;
}


.contacto-directo__dato strong {
    display: block;

    color: #24351f;

    font-size: 15px;
    font-weight: 600;

    overflow-wrap: anywhere;
}


.contacto-directo__dato:hover strong {
    color: #a98249;
}


/* =========================================================
   UBICACIÓN
   ========================================================= */

.contacto-directo__ubicacion {
    margin-top: 29px;

    padding-top: 26px;

    display: flex;

    gap: 15px;

    border-top:
        1px solid rgba(36, 53, 31, 0.13);
}


.contacto-directo__ubicacion-icono {
    color: #bb965d;

    font-size: 25px;
}


.contacto-directo__ubicacion strong {
    color: #24351f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 18px;
    font-weight: 500;
}


.contacto-directo__ubicacion p {
    margin: 6px 0 0;

    color: #62635f;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .contacto-consulta {
        padding:
            75px 25px
            85px;
    }


    .contacto-consulta__container {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(280px, 0.75fr);

        gap: 40px;
    }


    .contacto-directo {
        padding:
            35px 27px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .contacto-consulta {
        padding:
            60px 20px
            70px;
    }


    .contacto-consulta__container {
        display: block;
    }


    .contacto-consulta__formulario h2 {
        font-size: 36px;
    }


    .contacto-consulta__intro {
        margin-bottom: 29px;

        font-size: 15px;
    }


    .contacto-form__grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .contacto-form__field--full {
        grid-column: auto;
    }


    .contacto-form__button {
        width: 100%;

        margin-top: 24px;
    }


    .contacto-directo {
        margin-top: 55px;

        padding:
            34px 25px;
    }


    .contacto-directo h3 {
        font-size: 29px;
    }

}

/* =========================================================
   CONTACTO-0001C
   UBICACIÓN + GOOGLE MAPS
   ========================================================= */

.contacto-ubicacion {
    padding: 95px 35px;

    background: #f7f4ed;
}


.contacto-ubicacion__container {
    width: min(1240px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(320px, 0.78fr)
        minmax(0, 1.35fr);

    gap: 75px;

    align-items: center;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.contacto-ubicacion__eyebrow {
    margin-bottom: 10px;

    color: #bb965d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.6px;
}


.contacto-ubicacion__contenido h2 {
    margin: 0;

    color: #24351f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 45px;
    line-height: 1.08;

    font-weight: 500;
}


.contacto-ubicacion__intro {
    max-width: 480px;

    margin: 23px 0 0;

    color: #60625d;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   DIRECCIÓN
   ========================================================= */

.contacto-ubicacion__direccion {
    margin-top: 30px;

    padding-top: 25px;

    display: flex;

    align-items: flex-start;

    gap: 16px;

    border-top:
        1px solid rgba(36, 53, 31, 0.14);
}


.contacto-ubicacion__direccion-icono {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(187, 150, 93, 0.55);

    border-radius: 50%;

    color: #a98249;

    font-size: 21px;
}


.contacto-ubicacion__direccion div {
    display: flex;

    flex-direction: column;
}


.contacto-ubicacion__direccion small {
    margin-bottom: 4px;

    color: #98978f;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.3px;
}


.contacto-ubicacion__direccion strong {
    color: #24351f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 20px;
    font-weight: 500;
}


.contacto-ubicacion__direccion span {
    margin-top: 3px;

    color: #62635f;

    font-size: 14px;
}


/* =========================================================
   BOTÓN
   ========================================================= */

.contacto-ubicacion__boton {
    display: inline-flex;

    min-height: 52px;

    margin-top: 31px;

    padding: 0 23px;

    align-items: center;
    justify-content: center;

    border:
        1px solid #24351f;

    border-radius: 4px;

    color: #24351f;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.8px;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.contacto-ubicacion__boton:hover {
    background: #24351f;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   MAPA
   ========================================================= */

.contacto-ubicacion__mapa {
    position: relative;

    width: 100%;

    min-height: 470px;

    overflow: hidden;

    border-radius: 8px;

    background: #e9e6df;

    box-shadow:
        0 10px 35px rgba(25, 35, 22, 0.08);
}


.contacto-ubicacion__mapa iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .contacto-ubicacion {
        padding:
            80px 25px;
    }


    .contacto-ubicacion__container {
        grid-template-columns:
            minmax(280px, 0.8fr)
            minmax(0, 1.2fr);

        gap: 40px;
    }


    .contacto-ubicacion__contenido h2 {
        font-size: 39px;
    }


    .contacto-ubicacion__mapa {
        min-height: 430px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .contacto-ubicacion {
        padding:
            65px 20px
            70px;
    }


    .contacto-ubicacion__container {
        display: flex;

        flex-direction: column;

        gap: 45px;

        align-items: stretch;
    }


    .contacto-ubicacion__contenido h2 {
        font-size: 36px;
    }


    .contacto-ubicacion__intro {
        font-size: 15px;
        line-height: 1.7;
    }


    .contacto-ubicacion__boton {
        width: 100%;
    }


    .contacto-ubicacion__mapa {
        min-height: 380px;

        border-radius: 6px;
    }

}


