/* =========================
   Contact Poster (full-bleed) estilo imagen
   ========================= */

.contact.contact-poster {
    position: relative;
    padding: 0;
    min-height: 92vh;
    display: flex;
    align-items: stretch;
    color: var(--c-text);
    background: #000;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.contact.contact-poster .max-width {
    width: 100%;
    display: flex;
    align-items: stretch;
    padding-top: 90px;
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
}

.contact-poster__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(94, 23, 235, 0.78) 0%,
            rgba(94, 23, 235, 0.48) 22%,
            rgba(14, 15, 21, 0.45) 55%,
            rgba(14, 15, 21, 0.75) 100%),
        radial-gradient(circle at 20% 35%, rgba(94, 23, 235, 0.28), rgba(0, 0, 0, 0) 60%),
        radial-gradient(circle at 80% 25%, rgba(254, 254, 255, 0.10), rgba(0, 0, 0, 0) 55%),
        linear-gradient(180deg, rgba(20, 22, 32, 1) 0%, rgba(10, 12, 20, 1) 100%);
    z-index: 0;
}

.contact-poster__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(0, 0, 0, 0.30) 0 16%, rgba(0, 0, 0, 0) 17%),
        radial-gradient(circle at 28% 56%, rgba(0, 0, 0, 0.25) 0 14%, rgba(0, 0, 0, 0) 15%),
        radial-gradient(circle at 42% 24%, rgba(0, 0, 0, 0.22) 0 12%, rgba(0, 0, 0, 0) 13%),
        radial-gradient(circle at 52% 70%, rgba(0, 0, 0, 0.18) 0 12%, rgba(0, 0, 0, 0) 13%);
    opacity: 0.65;
    mix-blend-mode: multiply;
}

.contact-poster__wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.contact-poster__left {
    padding: 18px 10px;
}

.contact-poster__badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 254, 255, 0.10);
    border: 1px solid rgba(254, 254, 255, 0.14);
    margin-bottom: 18px;
}

.contact-poster__badge i {
    font-size: 28px;
    color: rgba(254, 254, 255, 0.95);
}

.contact-poster__headline {
    font-family: "Ubuntu", sans-serif;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 0.95;
    font-size: clamp(34px, 4.2vw, 62px);
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.quote-mark {
    display: inline-block;
    font-size: 1.2em;
    color: rgba(254, 254, 255, 0.9);
    margin-right: 6px;
}

.quote-mark.end {
    margin-left: 6px;
}

.contact-poster__sub {
    margin-top: 16px;
    font-size: 16px;
    color: rgba(254, 254, 255, 0.90);
    max-width: 520px;
    line-height: 1.6;
}

/* Panel derecho */
.contact-actions {
    background: rgba(34, 34, 34, 0.60);
    border: 1px solid rgba(254, 254, 255, 0.10);
    border-radius: 16px;
    padding: 18px 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.contact-actions__title {
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    color: rgba(254, 254, 255, 0.85);
    margin-bottom: 14px;
}

.contact-actions__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(254, 254, 255, 0.10);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.contact-card__icon i {
    font-size: 22px;
    color: var(--c-text);
}

.contact-card__label {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 12px;
    color: rgba(254, 254, 255, 0.85);
    margin-bottom: 6px;
}

.contact-card__value {
    color: rgba(254, 254, 255, 0.95);
    font-weight: 700;
}

.contact-card__hint {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(254, 254, 255, 0.7);
    line-height: 1.35;
}

.contact-link {
    color: rgba(254, 254, 255, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(254, 254, 255, 0.22);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-link:hover {
    color: var(--c-secondary);
    border-bottom-color: var(--c-secondary);
}

/* Líneas de teléfono */
.contact-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-line__num {
    font-weight: 900;
    letter-spacing: 0.6px;
    font-size: 14px;
    color: rgba(254, 254, 255, 0.95);
}

.contact-line__actions {
    display: flex;
    gap: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid rgba(254, 254, 255, 0.16);
    color: rgba(254, 254, 255, 0.95);
    text-decoration: none;
    background: rgba(254, 254, 255, 0.10);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-btn i{
    font-size: 14px;
}

.contact-btn--call{
    background: rgba(85, 0, 224, 0.25);        /* azul índigo */
    border-color: rgba(85, 0, 224, 0.55);
}

.contact-btn--call:hover{
    background: rgba(85, 0, 224, 0.45);
    border-color: rgba(85, 0, 224, 0.85);
    box-shadow: 0 10px 22px rgba(85, 0, 224, 0.45);
    transform: translateY(-1px);
}

.contact-btn--wa{
    background: rgba(54, 122, 47, 0.28);      /* verde oliva */
    border-color: rgba(110, 128, 74, 0.65);
}

.contact-btn--wa:hover{
    background: rgba(110, 128, 74, 0.45);
    border-color: rgba(110, 128, 74, 0.9);
    box-shadow: 0 10px 22px rgba(110, 128, 74, 0.45);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 947px) {
    .contact.contact-poster {
        min-height: auto;
    }

    .contact.contact-poster .max-width {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .contact-poster__wrap {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-poster__headline {
        font-size: clamp(30px, 7.6vw, 44px);
        line-height: 1;
    }

    .contact-actions {
        padding: 14px 14px;
    }

    .contact-actions {
        margin-right: 3rem;
        width: 90vw;
    }

    .contact-link {
        font-size: 0.89rem;
    }
}

@media (max-width: 500px) {
    .contact-line__actions {
        width: 100%;
    }

    .contact-btn {
        width: 100%;
    }
}