/* ============================================
   MEDIA KIT — CONTACTO
   ============================================ */

/* ---------- HERO ---------- */
.mk-contacto-hero {
    position: relative;
    padding: 140px 0 80px;
    background: #0a0a0a;
    overflow: hidden;
}

.mk-contacto-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(229,9,20,.1) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.mk-contacto-hero__content {
    position: relative;
    z-index: 2;
}

.mk-contacto-hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.mk-contacto-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.55);
    max-width: 500px;
    line-height: 1.7;
}

/* ---------- BODY ---------- */
.mk-contacto-body {
    padding: 80px 0 100px;
    background: #fff;
}

.mk-contacto-body__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

/* Info side */
.mk-contacto-body__info-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mk-contacto-body__info-desc {
    font-size: .95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.mk-contacto-body__channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mk-contacto-body__channel {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

a.mk-contacto-body__channel:hover {
    border-color: rgba(229,9,20,.25);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transform: translateY(-2px);
}

.mk-contacto-body__channel-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #fafafa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #E50914;
}

.mk-contacto-body__channel-icon svg {
    width: 100%;
    height: 100%;
}

.mk-contacto-body__channel-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4px;
}

.mk-contacto-body__channel-value {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    color: #333;
    word-break: break-all;
}

/* Social */
.mk-contacto-body__social {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mk-contacto-body__social-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
}

.mk-contacto-body__social-links {
    display: flex;
    gap: 12px;
}

.mk-contacto-body__social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: background .3s ease, transform .3s ease;
}

.mk-contacto-body__social-links a:hover {
    background: #E50914;
    transform: translateY(-3px);
}

.mk-contacto-body__social-links a svg {
    width: 100%;
    height: 100%;
}

/* ---------- FORM ---------- */
.mk-contacto-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mk-contacto-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mk-contacto-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mk-contacto-form__label {
    font-size: .85rem;
    font-weight: 700;
    color: #111;
}

.mk-contacto-form__label span {
    color: #E50914;
}

.mk-contacto-form__input {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    color: #333;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    outline: none;
    transition: border-color .3s ease;
}

.mk-contacto-form__input::placeholder {
    color: #bbb;
}

.mk-contacto-form__input:focus {
    border-color: #E50914;
}

.mk-contacto-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 28px;
    cursor: pointer;
}

.mk-contacto-form__textarea {
    resize: vertical;
    min-height: 120px;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    transition: border-color .3s ease;
}

.mk-contacto-form__textarea:focus {
    border-color: #E50914;
}

.mk-contacto-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.mk-contacto-form__submit:hover {
    background: #E50914;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229,9,20,.25);
}

.mk-contacto-form__submit-arrow {
    transition: transform .3s ease;
}

.mk-contacto-form__submit:hover .mk-contacto-form__submit-arrow {
    transform: translateX(4px);
}

/* Success state */
.mk-contacto-form__success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 20px;
}

.mk-contacto-form__success-icon {
    width: 64px;
    height: 64px;
}

.mk-contacto-form__success-icon svg {
    width: 100%;
    height: 100%;
}

.mk-contacto-form__success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
}

.mk-contacto-form__success p {
    font-size: 1rem;
    color: #666;
    max-width: 360px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .mk-contacto-body__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .mk-contacto-body__info {
        order: 1;
    }
    .mk-contacto-body__form-wrap {
        order: 0;
    }
}

@media (max-width: 600px) {
    .mk-contacto-hero {
        padding: 120px 0 60px;
    }
    .mk-contacto-body {
        padding: 48px 0 60px;
    }
    .mk-contacto-form__row {
        grid-template-columns: 1fr;
    }
    .mk-contacto-form__submit {
        width: 100%;
    }
}
