/* =========================================================
   ALFA SPORT — CONTACTO
   ========================================================= */

.alfa-contact {
    background: var(--alfa-bg, #f7f5ef);
    color: var(--alfa-text-dark, #10231f);
    overflow: hidden;
}

.alfa-contact *,
.alfa-contact *::before,
.alfa-contact *::after {
    box-sizing: border-box;
}

.alfa-contact img {
    display: block;
    width: 100%;
}

.alfa-contact a {
    text-decoration: none;
}

.alfa-contact__eyebrow {
    display: block;
    margin: 0 0 15px;
    color: var(--alfa-green, #003c32);
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.alfa-contact__eyebrow--light {
    color: rgba(255,255,255,.72);
}

.alfa-contact__line {
    display: block;
    width: 52px;
    height: 1px;
    margin: 22px 0 27px;
    background: var(--alfa-green, #003c32);
    opacity: .6;
}

.alfa-contact__line--light {
    background: #d8c8a7;
    opacity: .8;
}

.alfa-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--alfa-green-deep, #002e27);
    border-radius: 1px;
    background: var(--alfa-green-deep, #002e27);
    color: #fff;
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.alfa-contact__button:hover {
    background: var(--alfa-green, #003c32);
    color: #fff;
    transform: translateY(-2px);
}

.alfa-contact__button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   HERO
   ========================================================= */

.alfa-contact-hero {
    position: relative;
    min-height: 500px;
    background: #081410;
    overflow: hidden;
}

.alfa-contact-hero__media,
.alfa-contact-hero__overlay {
    position: absolute;
    inset: 0;
}

.alfa-contact-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
}

.alfa-contact-hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(4,12,10,.96) 0%,
            rgba(4,12,10,.82) 29%,
            rgba(4,12,10,.30) 60%,
            rgba(4,12,10,.05) 100%
        );
}

.alfa-contact-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.alfa-contact-hero__content {
    width: min(750px, 48%);
}

.alfa-contact-hero h1 {
    margin: 0;
    color: #fff;
    font-family: var(--alfa-font-display, "Michroma", sans-serif);
    font-size: clamp(40px, 4.6vw, 66px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.alfa-contact-hero p {
    max-width: 465px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   INFO
   ========================================================= */

.alfa-contact-info {
    padding: 42px 0 48px;
    background: var(--alfa-bg, #f7f5ef);
}

.alfa-contact-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.alfa-contact-info__item {
    min-height: 170px;
    padding: 8px 34px;
    text-align: center;
}

.alfa-contact-info__item + .alfa-contact-info__item {
    border-left: 1px solid rgba(0,55,46,.14);
}

.alfa-contact-info__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    color: #101b18;
}

.alfa-contact-info__icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.alfa-contact-info h2 {
    margin: 0 0 8px;
    color: var(--alfa-text-dark, #10231f);
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 15px;
    font-weight: 600;
}

.alfa-contact-info a,
.alfa-contact-info p {
    margin: 0;
    color: var(--alfa-text-soft, #59625e);
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 12px;
    line-height: 1.6;
}

.alfa-contact-info a:hover {
    color: var(--alfa-green, #003c32);
}


/* =========================================================
   FORMULARIO + FOTO
   ========================================================= */

.alfa-contact-form-section {
    padding: 40px 0 90px;
}

.alfa-contact-form-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    gap: clamp(60px, 8vw, 125px);
    align-items: stretch;
}

.alfa-contact-form {
    max-width: 680px;
}

.alfa-contact-form h2 {
    margin: 0;
    color: var(--alfa-text-dark, #10231f);
    font-family: var(--alfa-font-display, "Michroma", sans-serif);
    font-size: clamp(31px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.alfa-contact-form__form {
    display: grid;
    gap: 20px;
}

.alfa-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alfa-contact-field {
    display: grid;
    gap: 7px;
}

.alfa-contact-field label {
    color: var(--alfa-text-dark, #10231f);
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 11px;
    font-weight: 500;
}

.alfa-contact-field label span {
    color: var(--alfa-red, #8f1d21);
}

.alfa-contact-field input,
.alfa-contact-field select,
.alfa-contact-field textarea {
    width: 100%;
    border: 1px solid rgba(0,45,37,.19);
    border-radius: 0;
    outline: 0;
    background: rgba(255,255,255,.36);
    color: var(--alfa-text-dark, #10231f);
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 13px;
    transition: border-color .2s ease, background .2s ease;
}

.alfa-contact-field input,
.alfa-contact-field select {
    height: 48px;
    padding: 0 14px;
}

.alfa-contact-field textarea {
    min-height: 145px;
    padding: 14px;
    resize: vertical;
}

.alfa-contact-field input:focus,
.alfa-contact-field select:focus,
.alfa-contact-field textarea:focus {
    border-color: var(--alfa-green, #003c32);
    background: #fff;
}

.alfa-contact-field input::placeholder,
.alfa-contact-field textarea::placeholder {
    color: #8b908d;
}

.alfa-contact-form__form .alfa-contact__button {
    justify-self: start;
    margin-top: 2px;
}

.alfa-contact-form__note {
    margin: -6px 0 0;
    color: var(--alfa-text-soft, #59625e);
    font-size: 11px;
}

.alfa-contact-editorial {
    position: relative;
    min-height: 555px;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.alfa-contact-editorial img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alfa-contact-editorial__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(4,14,12,.78) 0%,
            rgba(4,14,12,.10) 65%
        );
}

.alfa-contact-editorial__content {
    position: absolute;
    z-index: 2;
    left: 34px;
    right: 34px;
    bottom: 30px;
    color: #fff;
}

.alfa-contact-editorial blockquote {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 2.1vw, 31px);
    font-weight: 400;
    line-height: 1.18;
}

.alfa-contact-editorial__content > span {
    display: block;
    width: 44px;
    height: 1px;
    margin: 19px 0 15px;
    background: rgba(255,255,255,.65);
}

.alfa-contact-editorial strong {
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}


/* =========================================================
   UBICACIÓN
   ========================================================= */

.alfa-contact-location {
    position: relative;
    min-height: 355px;
    overflow: hidden;
    background: #deddd8;
}

.alfa-contact-location__map {
    position: absolute;
    inset: 0;
}

.alfa-contact-location__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(.88) brightness(1.06);
    opacity: .74;
}

.alfa-contact-location__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 355px;
}

.alfa-contact-location__card {
    width: min(390px, 100%);
    padding: 40px;
    background: rgba(0,48,40,.97);
    color: #fff;
}

.alfa-contact-location__card h2 {
    margin: 0;
    color: #fff;
    font-family: var(--alfa-font-display, "Michroma", sans-serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.25;
}

.alfa-contact-location__card p {
    margin: 0 0 21px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.65;
}

.alfa-contact-location__card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}

.alfa-contact-location__card a:hover {
    opacity: .75;
}

.alfa-contact-location__card a svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}


/* =========================================================
   FAQ
   ========================================================= */

.alfa-contact-faq {
    padding: 68px 0 72px;
    text-align: center;
}

.alfa-contact-faq__content {
    max-width: 760px;
    margin: 0 auto;
}

.alfa-contact-faq h2 {
    margin: 0;
    color: var(--alfa-text-dark, #10231f);
    font-family: var(--alfa-font-display, "Michroma", sans-serif);
    font-size: clamp(27px, 2.8vw, 40px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -.03em;
}

.alfa-contact-faq p {
    max-width: 600px;
    margin: 18px auto 27px;
    color: var(--alfa-text-soft, #59625e);
    font-size: 13px;
    line-height: 1.65;
}

.alfa-contact__button--outline {
    background: transparent;
    color: var(--alfa-green-deep, #002e27);
}

.alfa-contact__button--outline:hover {
    background: var(--alfa-green-deep, #002e27);
    color: #fff;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.alfa-contact-cta {
    position: relative;
    min-height: 325px;
    overflow: hidden;
    background: #071612;
}

.alfa-contact-cta__media,
.alfa-contact-cta__overlay {
    position: absolute;
    inset: 0;
}

.alfa-contact-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

.alfa-contact-cta__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3,14,12,.97) 0%,
            rgba(3,14,12,.86) 35%,
            rgba(3,14,12,.24) 68%,
            rgba(3,14,12,.05) 100%
        );
}

.alfa-contact-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 325px;
}

.alfa-contact-cta__content {
    max-width: 590px;
}

.alfa-contact-cta h2 {
    margin: 0;
    color: #fff;
    font-family: var(--alfa-font-display, "Michroma", sans-serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.2;
}

.alfa-contact-cta p {
    max-width: 560px;
    margin: 0 0 24px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.7;
}

.alfa-contact__button--light {
    border-color: #fff;
    background: #fff;
    color: #10231f;
}

.alfa-contact__button--light:hover {
    border-color: #fff;
    background: transparent;
    color: #fff;
}


/* =========================================================
   CONTACT FORM 7 — SI LO ACTIVA MÁS ADELANTE
   ========================================================= */

.alfa-contact-form .wpcf7 {
    margin-top: 0;
}

.alfa-contact-form .wpcf7 form {
    display: grid;
    gap: 20px;
}

.alfa-contact-form .wpcf7 p {
    margin: 0;
}

.alfa-contact-form .wpcf7 label {
    display: grid;
    gap: 7px;
    color: var(--alfa-text-dark, #10231f);
    font-size: 11px;
    font-weight: 500;
}

.alfa-contact-form .wpcf7 input:not([type="submit"]),
.alfa-contact-form .wpcf7 select,
.alfa-contact-form .wpcf7 textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid rgba(0,45,37,.19);
    border-radius: 0;
    background: rgba(255,255,255,.36);
    color: var(--alfa-text-dark, #10231f);
    font-family: var(--alfa-font-primary, "Instrument Sans", sans-serif);
    font-size: 13px;
}

.alfa-contact-form .wpcf7 input:not([type="submit"]),
.alfa-contact-form .wpcf7 select {
    height: 48px;
    padding: 0 14px;
}

.alfa-contact-form .wpcf7 textarea {
    min-height: 145px;
    padding: 14px;
}

.alfa-contact-form .wpcf7 input[type="submit"] {
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--alfa-green-deep, #002e27);
    border-radius: 0;
    background: var(--alfa-green-deep, #002e27);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .alfa-contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .alfa-contact-info__item:nth-child(3) {
        border-left: 0;
    }

    .alfa-contact-form-section__grid {
        gap: 55px;
    }
}

@media (max-width: 820px) {
    .alfa-contact-hero,
    .alfa-contact-hero__inner {
        min-height: 480px;
    }

    .alfa-contact-hero__content {
        width: 75%;
    }

    .alfa-contact-form-section {
        padding-bottom: 70px;
    }

    .alfa-contact-form-section__grid {
        grid-template-columns: 1fr;
    }

    .alfa-contact-editorial {
        min-height: 620px;
    }
}

@media (max-width: 560px) {
    .alfa-contact-hero,
    .alfa-contact-hero__inner {
        min-height: 470px;
    }

    .alfa-contact-hero__content {
        width: 100%;
    }

    .alfa-contact-hero__media img {
        object-position: 62% center;
    }

    .alfa-contact-hero__overlay {
        background: rgba(4,12,10,.67);
    }

    .alfa-contact-hero h1 {
        font-size: 37px;
    }

    .alfa-contact-info {
        padding: 35px 0;
    }

    .alfa-contact-info__grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 0;
    }

    .alfa-contact-info__item {
        min-height: 195px;
        padding: 24px 12px;
        border-bottom: 1px solid rgba(0,55,46,.12);
    }

    .alfa-contact-info__item:nth-child(odd) {
        border-left: 0;
    }

    .alfa-contact-info__item:nth-child(even) {
        border-left: 1px solid rgba(0,55,46,.12);
    }

    .alfa-contact-form-section {
        padding: 45px 0 60px;
    }

    .alfa-contact-form h2 {
        font-size: 30px;
    }

    .alfa-contact-form__row {
        grid-template-columns: 1fr;
    }

    .alfa-contact-editorial {
        min-height: 115vw;
        max-height: 560px;
    }

    .alfa-contact-location,
    .alfa-contact-location__inner {
        min-height: 410px;
    }

    .alfa-contact-location__card {
        width: 100%;
        padding: 32px 27px;
    }

    .alfa-contact-faq {
        padding: 55px 0 60px;
    }

    .alfa-contact-faq h2 {
        font-size: 27px;
    }

    .alfa-contact-cta,
    .alfa-contact-cta__inner {
        min-height: 360px;
    }

    .alfa-contact-cta__overlay {
        background: rgba(3,14,12,.69);
    }

    .alfa-contact-cta__media img {
        object-position: 64% center;
    }
}
