/* =========================================
   CONTACT SECTION
========================================= */

.contact {
    position: relative;

    padding: 140px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );
}


/* OVERLAY DECORATIVO */

.contact::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(212,175,55,0.12),
            transparent 40%
        );

    pointer-events: none;
}


/* CONTENEDOR */

.contact-container {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;
    align-items: center;
}


/* CAJA PRINCIPAL */

.contact-content {
    width: 100%;
    max-width: 850px;

    text-align: center;

    padding: 5rem 4rem;

    border-radius: 32px;

    background:
        rgba(255,255,255,0.04);

    backdrop-filter: blur(10px);

    border:
        1px solid rgba(212,175,55,0.18);

    box-shadow:
        0 18px 50px rgba(0,0,0,0.25);
}


/* SUBTÍTULO */

.contact .section-subtitle {
    display: inline-block;

    color: #d4af37;

    font-size: 0.9rem;

    text-transform: uppercase;

    letter-spacing: 4px;

    margin-bottom: 1.5rem;

    font-weight: 600;
}


/* TÍTULO */

.contact .section-title {
    color: white;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.2;

    font-weight: 700;

    margin-bottom: 1.8rem;
}


/* TEXTO */

.contact-content p {
    max-width: 650px;

    margin: 0 auto 2.5rem;

    color: rgba(255,255,255,0.78);

    font-size: 1.1rem;

    line-height: 1.9;
}


/* BOTÓN */

.contact .btn-primary {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    padding: 1rem 2.4rem;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f2d67d
        );

    color: var(--navy);

    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(212,175,55,0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* HOVER */

.contact .btn-primary:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(212,175,55,0.5);
}




/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .contact {
        padding: 100px 0;
    }

    .contact-content {
        padding: 3.5rem 2rem;

        border-radius: 24px;
    }

    .contact .section-title {
        font-size: 2.4rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

}