/* =========================================================
   MOTIVACIÓN SALSERA
   Contact Page Styles
========================================================= */


/* =========================================================
   1. CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;
    padding: 90px 20px 80px;
    background:
        linear-gradient(
            135deg,
            #fffaf5 0%,
            #fff7f0 52%,
            #f8e9df 100%
        );
    text-align: center;
    overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(169, 0, 32, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero::before {
    width: 420px;
    height: 420px;
    top: -260px;
    left: -190px;
}

.contact-hero::after {
    width: 360px;
    height: 360px;
    right: -190px;
    bottom: -250px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    margin: 0 auto;
}

.contact-hero .eyebrow {
    margin-bottom: 15px;
}

.contact-hero h1 {
    margin: 0 0 22px;
    color: var(--black);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -2px;
}

.contact-hero h1 .accent {
    color: var(--orange);
}

.contact-hero-text {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
}


/* =========================================================
   2. MAIN CONTACT SECTION
========================================================= */

.contact-section {
    padding: 90px 20px 100px;
    background: var(--cream);
}

.contact-container {
    width: min(1080px, 100%);
    margin: 0 auto;
}


/* =========================================================
   3. SECTION HEADER
========================================================= */

.contact-header {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-header .eyebrow {
    margin-bottom: 12px;
}

.contact-header h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1;
    letter-spacing: -1px;
}

.contact-header h2 .accent {
    color: var(--red);
}


/* =========================================================
   4. CONTACT METHODS
========================================================= */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 75px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-card-icon img {
    width: 26px;
    height: 26px;
}

.contact-card-icon.instagram {
    background: #fbe8df;
}

.contact-card-icon.whatsapp {
    background: #e8f7ed;
}

.contact-card-content {
    min-width: 0;
}

.contact-card-label {
    margin: 0 0 6px;
    color: var(--red);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.contact-card h3 {
    margin: 0 0 9px;
    color: var(--black);
    font-size: 1.45rem;
}

.contact-card p:not(.contact-card-label) {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.7;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    transition: var(--transition);
}

.contact-link span:last-child {
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--red-dark);
}

.contact-link:hover span:last-child {
    transform: translateX(4px);
}


/* =========================================================
   5. LOCATION
========================================================= */

.contact-location {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 45px;
    align-items: center;
    margin-bottom: 80px;
}

.contact-location-header {
    padding: 10px 0;
}

.contact-location-header .eyebrow {
    margin-bottom: 12px;
}

.contact-location-header h2 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -1px;
}

.contact-location-header h2 .accent {
    color: var(--orange);
}

.contact-address {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}


/* =========================================================
   6. MAP
========================================================= */

.contact-map {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    background: #eee;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}


/* =========================================================
   7. CONTACT CTA
========================================================= */

.contact-cta {
    position: relative;
    padding: 70px 25px;
    background:
        linear-gradient(
            135deg,
            var(--red-dark),
            var(--red)
        );
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(169, 0, 32, 0.15);
}

.contact-cta::before,
.contact-cta::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta::before {
    width: 360px;
    height: 360px;
    top: -220px;
    left: -180px;
}

.contact-cta::after {
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: -200px;
}

.contact-cta > * {
    position: relative;
    z-index: 2;
}

.contact-cta .eyebrow {
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-cta h2 {
    margin: 0 0 18px;
    color: white;
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    line-height: 1;
}

.contact-cta h2 .accent {
    color: var(--orange-light);
}

.contact-cta > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0 auto 27px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    line-height: 1.7;
}

.contact-cta .btn {
    background: white;
    color: var(--red);
}

.contact-cta .btn:hover {
    background: var(--orange-light);
    color: white;
}


/* =========================================================
   8. MOBILE / TABLET
========================================================= */

@media (max-width: 850px) {

    .contact-hero {
        padding: 70px 20px;
    }

    .contact-section {
        padding: 70px 20px 80px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        margin-bottom: 65px;
    }

    .contact-location {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 65px;
    }

    .contact-location-header {
        text-align: center;
    }

    .contact-address {
        text-align: center;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-map iframe {
        height: 350px;
    }
}


/* =========================================================
   9. SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-hero {
        padding: 60px 18px;
    }

    .contact-hero h1 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        letter-spacing: -1.5px;
    }

    .contact-hero-text {
        font-size: 0.84rem;
    }

    .contact-section {
        padding: 55px 18px 65px;
    }

    .contact-header {
        margin-bottom: 38px;
    }

    .contact-header h2 {
        font-size: 2.25rem;
    }

    .contact-methods {
        gap: 14px;
        margin-bottom: 55px;
    }

    .contact-card {
        gap: 17px;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .contact-card-icon {
        width: 46px;
        height: 46px;
    }

    .contact-card-icon img {
        width: 22px;
        height: 22px;
    }

    .contact-card h3 {
        font-size: 1.25rem;
    }

    .contact-card p:not(.contact-card-label) {
        font-size: 0.74rem;
    }

    .contact-location {
        gap: 25px;
        margin-bottom: 55px;
    }

    .contact-location-header h2 {
        font-size: 2.2rem;
    }

    .contact-map {
        min-height: 280px;
        border-radius: 20px;
    }

    .contact-map iframe {
        height: 280px;
    }

    .contact-cta {
        padding: 55px 20px;
        border-radius: 20px;
    }

    .contact-cta h2 {
        font-size: 2.45rem;
    }

    .contact-cta > p:not(.eyebrow) {
        font-size: 0.82rem;
    }
}
