.contacto-page {
    background: #ffffff;
    padding: 155px 0 125px;
    overflow-x: hidden;
}

.contacto-layout {
    width: 76%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 95px;
    align-items: start;
}

/* IZQUIERDA */

.contacto-title {
    margin-top: 125px;
    margin-bottom: 115px;
}

.contacto-title h1 {
    color: #4b4036;
    font-family: "DinProRegular", sans-serif;
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 18px;
}

.contacto-title p {
    color: #705039;
    font-family: "Gotham", sans-serif;
    font-size: 25px;
    line-height: 1.12;
    font-weight: 300;
}

.contacto-info {
    margin-bottom: 75px;
}

.contacto-info p {
    color: #705039;
    font-family: "Gotham", sans-serif;
    font-size: 25px;
    line-height: 1.28;
    font-weight: 300;
    margin-bottom: 24px;
}

.contacto-info > a {
    color: #705039;
    font-family: "Gotham", sans-serif;
    font-size: 25px;
    line-height: 1.28;
    font-weight: 300;
    margin-bottom: 24px;
}

.telefonos-contacto {
    display: flex;

    flex-direction: column;

    gap: 4px;

    margin-bottom: 34px;
}

.telefonos-contacto a {
    color: #705039;

    font-family: "Gotham", sans-serif;

    font-size: 25px;

    font-weight: 300;

    line-height: 1.1;

    text-decoration: none !important;
}

.contacto-info a {
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contacto-img-left {
    width: 100%;
    height: 415px;
    object-fit: cover;
    display: block;
}

/* DERECHA */

.contacto-img-top {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    margin-bottom: 92px;
}

.contacto-form {
    width: 100%;
}

.contacto-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px 56px;
    margin-bottom: 80px;
}

.contacto-form input,
.contacto-form select {
    width: 100%;

    border: none;
    border-bottom: 1px solid #4b4036;
    background: transparent;

    padding: 0 18px 14px;

    color: #ac8b72;
    font-family: "Gotham", sans-serif;
    font-size: 17px;
    font-weight: 300;

    outline: none;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: #ac8b72;
}

.contacto-form select {
    color: #ac8b72;
    cursor: pointer;
}

.contacto-form textarea {
    width: 100%;
    height: 180px;

    border: 1px solid #4b4036;
    background: transparent;

    padding: 28px 36px;

    color: #ac8b72;
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    font-weight: 300;

    resize: none;
    outline: none;
}

.contacto-label {
    display: block;

    color: #ac8b72;
    font-family: "Gotham", sans-serif;
    font-size: 17px;

    margin-top: 14px;
    margin-left: 16px;
}

/* =========================
   CONTACTO CHECKS
========================= */

.contacto-promos {
    margin-top: 42px;
    margin-bottom: 42px;
}

.contacto-promos .contacto-label {
    display: block;

    margin: 0 0 42px 0 !important;

    text-align: left !important;
}

.contacto-checkbox {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    width: 100%;
    max-width: 520px;

    margin: 0 auto 22px;

    text-align: left;
}

.contacto-checkbox input {
    width: 14px;
    height: 14px;

    margin-top: 2px;

    accent-color: #b6a296;

    flex-shrink: 0;
}

.contacto-checkbox span {
    color: #ac8b72;

    font-family: "Gotham", sans-serif;

    font-size: 13px;
    line-height: 1.45;
    font-weight: 300;
}

.contacto-checkbox a {
    color: #ac8b72;

    text-decoration: underline;

    text-underline-offset: 3px;
}

.privacidad-check {
    margin-bottom: 28px !important;
}

/* BOTÓN */

.contacto-submit {
    width: 230px;
    height: 56px;

    margin: 20px auto 42px;

    border: none;
    background: #c6b19f;

    color: #fefcf6;
    font-family: "Gotham", sans-serif;
    font-size: 30px;
    font-weight: 300;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.contacto-submit:hover {
    background: #705039;
}


.captcha-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 5px;
    margin-bottom: 12px;
}
/* =========================
   CONTACTO FULL RESPONSIVE
========================= */

/* LAPTOP */
@media (max-width: 1400px) {
    .contacto-page {
        padding: 135px 0 105px !important;
    }

    .contacto-layout {
        width: 84% !important;
        gap: 65px !important;
    }

    .contacto-title {
        margin-top: 90px !important;
        margin-bottom: 80px !important;
    }

    .contacto-title h1 {
        font-size: 38px !important;
    }

    .contacto-title p,
    .contacto-info p,
    .contacto-info a {
        font-size: 21px !important;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .contacto-page {
        padding: 120px 0 85px !important;
    }

    .contacto-layout {
        width: 86% !important;
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .contacto-title {
        margin: 0 0 45px !important;
        text-align: center !important;
    }

    .contacto-title h1 {
        font-size: 34px !important;
    }

    .contacto-title p {
        font-size: 19px !important;
        line-height: 1.35 !important;
    }

    .contacto-info {
        margin-bottom: 45px !important;
        text-align: center !important;
    }

    .contacto-info p,
    .contacto-info a {
        font-size: 18px !important;
        line-height: 1.4 !important;
        margin-bottom: 18px !important;
    }

    .contacto-img-left,
    .contacto-img-top {
        height: 330px !important;
    }

    .contacto-img-top {
        margin-bottom: 60px !important;
    }

    .contacto-form-grid {
        gap: 46px 36px !important;
        margin-bottom: 55px !important;
    }

    .contacto-checkbox {
        margin-top: 42px !important;
    }
}
@media (max-width: 575px) {
    .contacto-page {
        padding: 95px 0 80px !important;
    }

    .contacto-layout {
        width: 100% !important;
        display: block !important;
    }

    .contacto-left,
    .contacto-right,
    .contacto-form {
        width: 88% !important;
        margin: 0 auto !important;
    }

    .contacto-img-left,
    .contacto-img-top {
        width: 100% !important;
        height: 235px !important;
        object-fit: cover !important;
    }

    .contacto-img-top {
        margin-bottom: 38px !important;
    }

    .contacto-form-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        margin-bottom: 34px !important;
    }

    .contacto-form input,
    .contacto-form select {
        width: 100% !important;
        height: 42px !important;
        font-size: 14px !important;
        padding: 0 34px 10px 10px !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    .contacto-form textarea {
        width: 100% !important;
        height: 155px !important;
        padding: 20px 22px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .contacto-promos {
        margin-top: 0 !important;
        margin-bottom: 34px !important;
    }

    .contacto-promos .contacto-label {
        font-size: 13px !important;
        text-align: left !important;
        margin: 14px 0 34px 0 !important;
    }

    .contacto-checkbox {
        width: 100% !important;
        max-width: 290px !important;

        margin: 0 auto 18px !important;

        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;

        gap: 10px !important;
    }

    .contacto-checkbox input {
        width: 13px !important;
        height: 13px !important;

        margin-top: 2px !important;

        flex-shrink: 0 !important;
    }

    .contacto-checkbox span,
    .contacto-checkbox a {
        font-size: 11px !important;
        line-height: 1.45 !important;
        text-align: left !important;
    }

    .contacto-submit {
        width: 168px !important;
        height: 46px !important;

        font-size: 23px !important;

        margin: 34px auto 28px !important;
    }

    .telefonos-contacto {
        gap: 0 !important;
        margin-bottom: 8px !important;
    }

    .telefonos-contacto a {
        line-height: 1.05 !important;
        margin-bottom: 0 !important;
    }

    .contacto-info > a {
        display: block !important;
        font-size: 13px !important;
        line-height: 1.2 !important;
        margin-top: 8px !important;
    }
    /* =========================
       CAPTCHA MOBILE
    ========================= */
    
    .captcha-container {
    
        margin-top: -8px !important;
    
        margin-bottom: 20px !important;
    
        transform: scale(0.92);
    
        transform-origin: center;
    
        display: flex !important;
    
        justify-content: center !important;
    }
}
/* MOBILE */
@media (max-width: 575px) {
    .contacto-page {
        padding: 95px 0 80px !important;
    }

    .contacto-layout {
        width: 100% !important;
        display: block !important;
    }

    .contacto-left,
    .contacto-right,
    .contacto-form {
        width: 88% !important;
        margin: 0 auto !important;
    }

    .contacto-img-left,
    .contacto-img-top {
        width: 100% !important;
        height: 235px !important;
        object-fit: cover !important;
    }

    .contacto-img-top {
        margin-bottom: 38px !important;
    }

    .contacto-form-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        margin-bottom: 34px !important;
    }

    .contacto-form input,
    .contacto-form select {
        width: 100% !important;
        height: 42px !important;
        font-size: 14px !important;
        padding: 0 34px 10px 10px !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    .contacto-form textarea {
        width: 100% !important;
        height: 155px !important;
        padding: 20px 22px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .contacto-label {
        font-size: 13px !important;
        text-align: center !important;
        margin: 14px 0 0 !important;
    }

    .contacto-checkbox {
        width: 78% !important;
        max-width: 260px !important;
        margin: 34px auto 0 !important;
        display: grid !important;
        grid-template-columns: 16px 1fr !important;
        gap: 10px !important;
        align-items: start !important;
    }

    .contacto-checkbox input {
        width: 13px !important;
        height: 13px !important;
        margin: 2px 0 0 !important;
    }

    .contacto-checkbox span {
        font-size: 10.5px !important;
        line-height: 1.35 !important;
        text-align: left !important;
    }

    .contacto-submit {
        width: 168px !important;
        height: 46px !important;
        font-size: 23px !important;
        margin: 34px auto 28px !important;
    }

    .contacto-privacidad {
        width: 78% !important;
        max-width: 260px !important;
        margin: 0 auto 55px !important;
        font-size: 10.5px !important;
        line-height: 1.35 !important;
        text-align: center !important;
    }

    .telefonos-contacto {
        gap: 0 !important;
        margin-bottom: 8px !important;
    }

    .telefonos-contacto a {
        line-height: 1.05 !important;
        margin-bottom: 0 !important;
    }

    .contacto-info > a {
        display: block !important;
        font-size: 13px !important;
        line-height: 1.2 !important;
        margin-top: 8px !important;
    }
}

/* MOBILE MUY PEQUEÑO */
@media (max-width: 380px) {
    .contacto-page {
        padding: 95px 0 95px !important;
    }

    .contacto-title h1 {
        font-size: 24px !important;
    }

    .contacto-title p,
    .contacto-info p,
    .contacto-info a {
        font-size: 14.5px !important;
    }

    .contacto-img-left,
    .contacto-img-top {
        height: 220px !important;
    }

    .contacto-submit {
        width: 160px !important;
        height: 44px !important;
        font-size: 21px !important;
    }

    .contacto-privacidad {
        margin-bottom: 60px !important;
    }
}

/* =========================================
   FIX CONTACTO - TODOS LOS NAVEGADORES
========================================= */

.contacto-page,
.contacto-page * {
    box-sizing: border-box !important;

    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;

    text-rendering: geometricPrecision !important;

    font-kerning: normal !important;
}

/* FIX GRID SAFARI */
.contacto-layout,
.contacto-form-grid {
    min-width: 0 !important;
}

/* FIX IMÁGENES */
.contacto-img-left,
.contacto-img-top {
    transform: translateZ(0) !important;

    backface-visibility: hidden !important;

    image-rendering: auto !important;
}

/* SELECT CON FLECHA */
.contacto-form select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;

    background-color: transparent !important;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23705039' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    background-repeat: no-repeat !important;

    background-position: right 8px center !important;

    background-size: 15px !important;

    padding-right: 34px !important;

    cursor: pointer !important;
}

/* OCULTAR FLECHA EDGE */
.contacto-form select::-ms-expand {
    display: none;
}

/* FIX BOTÓN */
.contacto-submit {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    white-space: nowrap !important;

    -webkit-appearance: none !important;

    appearance: none !important;
}
