/* =========================================================
   CONTACTO DE SERVICIOS
========================================================= */

.services-contact-section {
    width: 100%;
    padding: 0 0 110px;

    background: #f7f8f6;
}

.services-contact {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.45fr);

    overflow: hidden;

    border: 1px solid rgba(35, 59, 50, 0.12);

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(35, 59, 50, 0.06),
        0 5px 15px rgba(35, 59, 50, 0.03);
}


/* =========================================================
   INFORMACIÓN DE CONTACTO
========================================================= */

.services-contact__information {
    box-sizing: border-box;

    min-width: 0;
    min-height: 620px;
    padding: 60px 50px;

    display: flex;
    flex-direction: column;

    background: #233b32;
    color: #ffffff;
}

.services-contact__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 22px;

    color: #c5cfb9;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-contact__eyebrow::before {
    content: "";

    display: block;

    width: 28px;
    height: 1px;

    background: #879873;
}

.services-contact__information h2 {
    max-width: 480px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 3.3vw, 52px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.services-contact__description {
    max-width: 520px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}


/* =========================================================
   DATOS DE CONTACTO
========================================================= */

.services-contact__data {
    margin-top: auto;
    padding-top: 48px;

    display: grid;
}

.services-contact__item {
    padding: 19px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.services-contact__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.services-contact__item > span {
    display: block;

    margin-bottom: 9px;

    color: #c5cfb9;

    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.services-contact__item a,
.services-contact__item p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    text-decoration: none;
}

.services-contact__item a {
    transition: color 0.2s ease;
}

.services-contact__item a:hover {
    color: #c5cfb9;
}


/* =========================================================
   TELÉFONOS
========================================================= */

.services-contact__phones {
    display: grid;
    gap: 10px;
}

.services-contact__phones a {
    display: block;

    color: #ffffff;

    text-decoration: none;
}

.services-contact__phones a:hover {
    color: #c5cfb9;
}


/* =========================================================
   CORREOS ELECTRÓNICOS
========================================================= */

.services-contact__emails {
    display: grid;
    gap: 10px;
}

.services-contact__emails a {
    display: block;

    color: #ffffff;

    overflow-wrap: anywhere;
    text-decoration: none;
}

.services-contact__emails a:hover {
    color: #c5cfb9;
}


/* =========================================================
   CONTENEDOR DEL FORMULARIO
========================================================= */

.services-contact__form-container {
    box-sizing: border-box;

    min-width: 0;
    padding: 60px 56px;

    background: #ffffff;
}

.services-contact__form-header {
    margin-bottom: 34px;
}

.services-contact__form-header > span {
    display: block;

    margin-bottom: 12px;

    color: #879873;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-contact__form-header h3 {
    margin: 0;

    color: #233b32;

    font-size: clamp(30px, 2.8vw, 40px);
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.services-contact__form-header p {
    margin: 14px 0 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FORMULARIO
========================================================= */

.services-contact__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.services-contact__field {
    min-width: 0;
}

.services-contact__field--full {
    grid-column: 1 / -1;
}

.services-contact__field label {
    display: block;

    margin-bottom: 9px;

    color: #233b32;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.services-contact__field input,
.services-contact__field select,
.services-contact__field textarea {
    box-sizing: border-box;

    width: 100%;

    border: 1px solid rgba(35, 59, 50, 0.16);
    border-radius: 0;

    outline: none;

    background: #f7f8f6;
    color: #233b32;

    font: inherit;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.services-contact__field input,
.services-contact__field select {
    height: 52px;
    padding: 0 15px;
}

.services-contact__field textarea {
    min-height: 145px;
    padding: 15px;

    resize: vertical;
}

.services-contact__field input::placeholder,
.services-contact__field textarea::placeholder {
    color: #98a19b;
}

.services-contact__field input:focus,
.services-contact__field select:focus,
.services-contact__field textarea:focus {
    border-color: #879873;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(135, 152, 115, 0.12);
}


/* =========================================================
   ACCIONES DEL FORMULARIO
========================================================= */

.services-contact__actions {
    grid-column: 1 / -1;

    padding-top: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.services-contact__actions p {
    max-width: 340px;
    margin: 0;

    color: #6b7280;

    font-size: 11px;
    line-height: 1.65;
}

.services-contact__submit {
    box-sizing: border-box;

    min-width: 200px;
    height: 52px;
    padding: 0 19px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border: 1px solid #233b32;
    border-radius: 0;

    background: #233b32;
    color: #ffffff;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.services-contact__submit:hover {
    transform: translateY(-1px);

    border-color: #879873;

    background: #879873;
    color: #ffffff;
}

.services-contact__submit span:last-child {
    font-size: 20px;
    line-height: 1;
    font-weight: 400;

    transition: transform 0.2s ease;
}

.services-contact__submit:hover span:last-child {
    transform: translateX(3px);
}


/* =========================================================
   RESPONSIVE - NOTEBOOK
   HASTA 1366 PX
========================================================= */

@media (max-width: 1366px) {

    .services-contact-section {
        padding-bottom: 96px;
    }

    .services-contact__information {
        min-height: 590px;
        padding: 54px 42px;
    }

    .services-contact__form-container {
        padding: 54px 46px;
    }

    .services-contact__information h2 {
        font-size: clamp(35px, 3.4vw, 47px);
    }

    .services-contact__form {
        gap: 20px;
    }

    .services-contact__submit {
        min-width: 185px;
    }
}


/* =========================================================
   RESPONSIVE - TABLET / NOTEBOOK PEQUEÑO
   HASTA 1050 PX
========================================================= */

@media (max-width: 1050px) {

    .services-contact-section {
        padding-bottom: 82px;
    }

    .services-contact {
        grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
    }

    .services-contact__information {
        min-height: 560px;
        padding: 46px 34px;
    }

    .services-contact__form-container {
        padding: 46px 34px;
    }

    .services-contact__information h2 {
        font-size: 39px;
    }

    .services-contact__description {
        font-size: 14px;
    }

    .services-contact__form-header h3 {
        font-size: 33px;
    }

    .services-contact__form {
        gap: 18px;
    }

    .services-contact__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-contact__submit {
        min-width: 190px;
    }
}


/* =========================================================
   RESPONSIVE - TABLET VERTICAL
   HASTA 780 PX
========================================================= */

@media (max-width: 780px) {

    .services-contact-section {
        padding-bottom: 70px;
    }

    .services-contact {
        grid-template-columns: 1fr;
    }

    .services-contact__information {
        min-height: auto;
        padding: 44px 38px;
    }

    .services-contact__information h2 {
        max-width: 520px;

        font-size: 40px;
    }

    .services-contact__description {
        max-width: 580px;
        margin-top: 18px;
    }

    .services-contact__data {
        padding-top: 34px;
    }

    .services-contact__form-container {
        padding: 42px 38px;
    }

    .services-contact__form-header {
        margin-bottom: 28px;
    }

    .services-contact__form {
        gap: 18px;
    }

    .services-contact__actions {
        align-items: center;
        flex-direction: row;
    }
}


/* =========================================================
   RESPONSIVE - MÓVIL
   HASTA 560 PX
========================================================= */

@media (max-width: 560px) {

    .services-contact-section {
        padding-bottom: 58px;
    }

    .services-contact__information {
        padding: 38px 26px;
    }

    .services-contact__eyebrow {
        margin-bottom: 18px;

        font-size: 10px;
    }

    .services-contact__information h2 {
        font-size: 35px;
    }

    .services-contact__description {
        font-size: 14px;
    }

    .services-contact__data {
        padding-top: 28px;
    }

    .services-contact__item {
        padding: 16px 0;
    }

    .services-contact__item a,
    .services-contact__item p {
        font-size: 14px;
    }

    .services-contact__form-container {
        padding: 38px 26px;
    }

    .services-contact__form-header h3 {
        font-size: 30px;
    }

    .services-contact__form {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .services-contact__field--full {
        grid-column: auto;
    }

    .services-contact__actions {
        grid-column: auto;

        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .services-contact__submit {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   RESPONSIVE - MÓVIL PEQUEÑO
   HASTA 430 PX
========================================================= */

@media (max-width: 430px) {

    .services-contact-section {
        padding-bottom: 50px;
    }

    .services-contact__information {
        padding: 34px 21px;
    }

    .services-contact__information h2 {
        font-size: 32px;
    }

    .services-contact__description {
        margin-top: 16px;

        font-size: 13px;
    }

    .services-contact__form-container {
        padding: 34px 21px;
    }

    .services-contact__form-header h3 {
        font-size: 28px;
    }

    .services-contact__form-header p {
        font-size: 13px;
    }

    .services-contact__field input,
    .services-contact__field select {
        height: 49px;
    }

    .services-contact__field textarea {
        min-height: 130px;
    }

    .services-contact__submit {
        height: 49px;
    }
}/* =========================================================
   CONTACTO DE SERVICIOS
========================================================= */

.services-contact-section {
    width: 100%;
    padding: 0 0 110px;

    background: #f7f8f6;
}

.services-contact {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.45fr);

    overflow: hidden;

    border: 1px solid rgba(35, 59, 50, 0.12);

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(35, 59, 50, 0.06),
        0 5px 15px rgba(35, 59, 50, 0.03);
}


/* =========================================================
   INFORMACIÓN DE CONTACTO
========================================================= */

.services-contact__information {
    box-sizing: border-box;

    min-width: 0;
    min-height: 620px;
    padding: 60px 50px;

    display: flex;
    flex-direction: column;

    background: #233b32;
    color: #ffffff;
}

.services-contact__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 22px;

    color: #c5cfb9;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-contact__eyebrow::before {
    content: "";

    display: block;

    width: 28px;
    height: 1px;

    background: #879873;
}

.services-contact__information h2 {
    max-width: 480px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(36px, 3.3vw, 52px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.services-contact__description {
    max-width: 520px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}


/* =========================================================
   DATOS DE CONTACTO
========================================================= */

.services-contact__data {
    margin-top: auto;
    padding-top: 48px;

    display: grid;
}

.services-contact__item {
    padding: 19px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.services-contact__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.services-contact__item > span {
    display: block;

    margin-bottom: 9px;

    color: #c5cfb9;

    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.services-contact__item a,
.services-contact__item p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    text-decoration: none;
}

.services-contact__item a {
    transition: color 0.2s ease;
}

.services-contact__item a:hover {
    color: #c5cfb9;
}


/* =========================================================
   TELÉFONOS
========================================================= */

.services-contact__phones {
    display: grid;
    gap: 10px;
}

.services-contact__phones a {
    display: block;

    color: #ffffff;

    text-decoration: none;
}

.services-contact__phones a:hover {
    color: #c5cfb9;
}


/* =========================================================
   CORREOS ELECTRÓNICOS
========================================================= */

.services-contact__emails {
    display: grid;
    gap: 10px;
}

.services-contact__emails a {
    display: block;

    color: #ffffff;

    overflow-wrap: anywhere;
    text-decoration: none;
}

.services-contact__emails a:hover {
    color: #c5cfb9;
}


/* =========================================================
   CONTENEDOR DEL FORMULARIO
========================================================= */

.services-contact__form-container {
    box-sizing: border-box;

    min-width: 0;
    padding: 60px 56px;

    background: #ffffff;
}

.services-contact__form-header {
    margin-bottom: 34px;
}

.services-contact__form-header > span {
    display: block;

    margin-bottom: 12px;

    color: #879873;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-contact__form-header h3 {
    margin: 0;

    color: #233b32;

    font-size: clamp(30px, 2.8vw, 40px);
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.services-contact__form-header p {
    margin: 14px 0 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FORMULARIO
========================================================= */

.services-contact__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.services-contact__field {
    min-width: 0;
}

.services-contact__field--full {
    grid-column: 1 / -1;
}

.services-contact__field label {
    display: block;

    margin-bottom: 9px;

    color: #233b32;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.services-contact__field input,
.services-contact__field select,
.services-contact__field textarea {
    box-sizing: border-box;

    width: 100%;

    border: 1px solid rgba(35, 59, 50, 0.16);
    border-radius: 0;

    outline: none;

    background: #f7f8f6;
    color: #233b32;

    font: inherit;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.services-contact__field input,
.services-contact__field select {
    height: 52px;
    padding: 0 15px;
}

.services-contact__field textarea {
    min-height: 145px;
    padding: 15px;

    resize: vertical;
}

.services-contact__field input::placeholder,
.services-contact__field textarea::placeholder {
    color: #98a19b;
}

.services-contact__field input:focus,
.services-contact__field select:focus,
.services-contact__field textarea:focus {
    border-color: #879873;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(135, 152, 115, 0.12);
}


/* =========================================================
   ACCIONES DEL FORMULARIO
========================================================= */

.services-contact__actions {
    grid-column: 1 / -1;

    padding-top: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.services-contact__actions p {
    max-width: 340px;
    margin: 0;

    color: #6b7280;

    font-size: 11px;
    line-height: 1.65;
}

.services-contact__submit {
    box-sizing: border-box;

    min-width: 200px;
    height: 52px;
    padding: 0 19px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border: 1px solid #233b32;
    border-radius: 0;

    background: #233b32;
    color: #ffffff;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.services-contact__submit:hover {
    transform: translateY(-1px);

    border-color: #879873;

    background: #879873;
    color: #ffffff;
}

.services-contact__submit span:last-child {
    font-size: 20px;
    line-height: 1;
    font-weight: 400;

    transition: transform 0.2s ease;
}

.services-contact__submit:hover span:last-child {
    transform: translateX(3px);
}


/* =========================================================
   RESPONSIVE - NOTEBOOK
   HASTA 1366 PX
========================================================= */

@media (max-width: 1366px) {

    .services-contact-section {
        padding-bottom: 96px;
    }

    .services-contact__information {
        min-height: 590px;
        padding: 54px 42px;
    }

    .services-contact__form-container {
        padding: 54px 46px;
    }

    .services-contact__information h2 {
        font-size: clamp(35px, 3.4vw, 47px);
    }

    .services-contact__form {
        gap: 20px;
    }

    .services-contact__submit {
        min-width: 185px;
    }
}


/* =========================================================
   RESPONSIVE - TABLET / NOTEBOOK PEQUEÑO
   HASTA 1050 PX
========================================================= */

@media (max-width: 1050px) {

    .services-contact-section {
        padding-bottom: 82px;
    }

    .services-contact {
        grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
    }

    .services-contact__information {
        min-height: 560px;
        padding: 46px 34px;
    }

    .services-contact__form-container {
        padding: 46px 34px;
    }

    .services-contact__information h2 {
        font-size: 39px;
    }

    .services-contact__description {
        font-size: 14px;
    }

    .services-contact__form-header h3 {
        font-size: 33px;
    }

    .services-contact__form {
        gap: 18px;
    }

    .services-contact__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-contact__submit {
        min-width: 190px;
    }
}


/* =========================================================
   RESPONSIVE - TABLET VERTICAL
   HASTA 780 PX
========================================================= */

@media (max-width: 780px) {

    .services-contact-section {
        padding-bottom: 70px;
    }

    .services-contact {
        grid-template-columns: 1fr;
    }

    .services-contact__information {
        min-height: auto;
        padding: 44px 38px;
    }

    .services-contact__information h2 {
        max-width: 520px;

        font-size: 40px;
    }

    .services-contact__description {
        max-width: 580px;
        margin-top: 18px;
    }

    .services-contact__data {
        padding-top: 34px;
    }

    .services-contact__form-container {
        padding: 42px 38px;
    }

    .services-contact__form-header {
        margin-bottom: 28px;
    }

    .services-contact__form {
        gap: 18px;
    }

    .services-contact__actions {
        align-items: center;
        flex-direction: row;
    }
}


/* =========================================================
   RESPONSIVE - MÓVIL
   HASTA 560 PX
========================================================= */

@media (max-width: 560px) {

    .services-contact-section {
        padding-bottom: 58px;
    }

    .services-contact__information {
        padding: 38px 26px;
    }

    .services-contact__eyebrow {
        margin-bottom: 18px;

        font-size: 10px;
    }

    .services-contact__information h2 {
        font-size: 35px;
    }

    .services-contact__description {
        font-size: 14px;
    }

    .services-contact__data {
        padding-top: 28px;
    }

    .services-contact__item {
        padding: 16px 0;
    }

    .services-contact__item a,
    .services-contact__item p {
        font-size: 14px;
    }

    .services-contact__form-container {
        padding: 38px 26px;
    }

    .services-contact__form-header h3 {
        font-size: 30px;
    }

    .services-contact__form {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .services-contact__field--full {
        grid-column: auto;
    }

    .services-contact__actions {
        grid-column: auto;

        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .services-contact__submit {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   RESPONSIVE - MÓVIL PEQUEÑO
   HASTA 430 PX
========================================================= */

@media (max-width: 430px) {

    .services-contact-section {
        padding-bottom: 50px;
    }

    .services-contact__information {
        padding: 34px 21px;
    }

    .services-contact__information h2 {
        font-size: 32px;
    }

    .services-contact__description {
        margin-top: 16px;

        font-size: 13px;
    }

    .services-contact__form-container {
        padding: 34px 21px;
    }

    .services-contact__form-header h3 {
        font-size: 28px;
    }

    .services-contact__form-header p {
        font-size: 13px;
    }

    .services-contact__field input,
    .services-contact__field select {
        height: 49px;
    }

    .services-contact__field textarea {
        min-height: 130px;
    }

    .services-contact__submit {
        height: 49px;
    }
}