.contact-page {
    background: #ffffff;
    color: #000000;
    overflow: hidden;
}

/* HERO */
.contact-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 24px 70px;
    background:
        radial-gradient(circle at 20% 20%, rgba(254, 207, 12, 0.18), transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.06), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.contact-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    text-align: center;
}

.contact-logo-wrap {
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.contact-logo {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(254, 207, 12, 0.18);
    color: #000000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 950;
    color: #000000;
}

.contact-hero p {
    max-width: 620px;
    margin: 24px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #5b5b5b;
}

.contact-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-btn--primary {
    background: #fecf0c;
    color: #000000;
    box-shadow: 0 18px 35px rgba(254, 207, 12, 0.35);
}

.contact-btn--secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.14);
}

.contact-btn:hover {
    transform: translateY(-4px);
}

.contact-btn--primary:hover {
    box-shadow: 0 24px 45px rgba(254, 207, 12, 0.45);
}

.contact-btn--secondary:hover {
    background: #000000;
    color: #ffffff;
}

.contact-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.7;
    animation: contactFloat 7s ease-in-out infinite alternate;
}

.contact-orb--one {
    width: 180px;
    height: 180px;
    top: 18%;
    left: 12%;
    background: rgba(254, 207, 12, 0.28);
}

.contact-orb--two {
    width: 230px;
    height: 230px;
    right: 10%;
    bottom: 14%;
    background: rgba(0, 0, 0, 0.08);
    animation-delay: 1.3s;
}

/* CONTENT */
.contact-content {
    padding: 90px 24px;
    background: #ffffff;
}

.contact-content__header {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.contact-content__header span {
    display: inline-block;
    margin-bottom: 12px;
    color: #a58200;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-content__header h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 950;
    color: #000000;
}

/* ✅ CAMBIO 1: Grid alineado */
.contact-grid {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* ✅ CAMBIO 1: Altura 100% para alinear columnas */
.contact-info,
.contact-form-box {
    height: 100%;
}

/* INFO CARDS */
.contact-info {
    display: grid;
    gap: 16px;
}

.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #000000;
    /* ✅ CAMBIO 2: Sombra más sutil */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(254, 207, 12, 0.15), transparent 45%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 207, 12, 0.65);
    /* ✅ CAMBIO 2: Hover más profesional */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card__icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fecf0c;
    font-size: 23px;
    /* ✅ CAMBIO 2: Icono con sombra más ligera */
    box-shadow: 0 6px 14px rgba(254, 207, 12, 0.18);
}

.contact-card div:last-child {
    position: relative;
    z-index: 1;
}

.contact-card span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 900;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.25;
    color: #000000;
    word-break: break-word;
}

.contact-card small {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: #6a6a6a;
}

/* FORM */
.contact-form-box {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(254, 207, 12, 0.8), rgba(0, 0, 0, 0.08), rgba(254, 207, 12, 0.28)) border-box;
    border: 1px solid transparent;
    /* ✅ CAMBIO 2: Sombra del formulario más elegante */
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.contact-form-box__top {
    margin-bottom: 24px;
}

.contact-form-box__top span {
    display: inline-block;
    margin-bottom: 10px;
    color: #a58200;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-box__top h3 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.04em;
    font-weight: 950;
    color: #000000;
}

.contact-form-box__top p {
    margin: 10px 0 0;
    color: #6b6b6b;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 900;
    color: #1b1b1b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fafafa;
    color: #000000;
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #fecf0c;
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(254, 207, 12, 0.18);
}

.contact-form button {
    margin-top: 4px;
    min-height: 54px;
    border: none;
    border-radius: 17px;
    background: #000000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
    background: #fecf0c;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(254, 207, 12, 0.32);
}

.contact-message {
    min-height: 20px;
    font-size: 14px;
    font-weight: 800;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}

.delay-4 {
    transition-delay: 0.48s;
}

@keyframes contactFloat {
    from {
        transform: translateY(0) translateX(0) scale(1);
    }

    to {
        transform: translateY(-18px) translateX(12px) scale(1.04);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-hero {
        min-height: 560px;
        padding: 70px 18px 55px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 26px;
    }
}

@media (max-width: 560px) {
    .contact-hero {
        min-height: auto;
        padding: 58px 18px 48px;
    }

    .contact-logo-wrap {
        width: 82px;
        height: 82px;
        border-radius: 22px;
    }

    .contact-logo {
        max-width: 60px;
        max-height: 60px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
    }

    .contact-content {
        padding: 64px 18px;
    }

    .contact-card {
        grid-template-columns: 46px 1fr;
        padding: 18px;
        border-radius: 22px;
    }

    .contact-card__icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        font-size: 20px;
    }

    .contact-form-box__top h3 {
        font-size: 28px;
    }
}