/* ==========================================================================
   SECCIÓN: HERO CONTACTO (CONTACTO.CSS) CON RESPONSIVE INTEGRADO
   ========================================================================== */
/* ==========================================================================
   ESTILOS HERO CONTACTO (IMAGEN HTML REAL Y CARGA OPTIMIZADA)
   ========================================================================== */
.contacto-hero-section {
    position: relative;
    padding: 160px 0;
    color: var(--white, #ffffff);
    overflow: hidden;
    width: 100%;
}

.contacto-hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contacto-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.contacto-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 19, 41, 0.9) 0%, rgba(5, 19, 41, 0.4) 30%, rgba(5, 19, 41, 0.05) 70%);
    z-index: 2;
}

.contacto-hero-section .container {
    position: relative;
    z-index: 3;
}

.contacto-hero-content {
    max-width: 700px;
}

.contacto-hero-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.contacto-gold-line {
    display: block;
    width: 35px;
    height: 3px;
    background-color: var(--primary-yellow, #ffc107);
}

.contacto-tag-text {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-yellow, #ffc107);
}

.contacto-hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 12px 0;
    letter-spacing: -0.5px;
    color: var(--white, #ffffff);
}

.contacto-text-gold {
    color: var(--primary-yellow, #ffc107);
}

.contacto-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN - HERO CONTACTO (TABLETS Y MÓVILES)
   ========================================================================== */

@media screen and (max-width: 992px) {
    .contacto-hero-section {
        padding: 55px 0;
    }

    .contacto-hero-title {
        font-size: 2.1rem;
    }

    .contacto-hero-desc {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .contacto-hero-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 576px) {
    .contacto-hero-section {
        padding: 45px 0;
    }

    .contacto-hero-tagline {
        gap: 10px;
        margin-bottom: 6px;
    }

    .contacto-gold-line {
        width: 28px;
        height: 2.5px;
    }

    .contacto-tag-text {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
    }

    .contacto-hero-title {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .contacto-hero-desc {
        font-size: 0.88rem;
        line-height: 1.45;
    }
}

/* ==========================================================================
   ESTILOS Y RESPONSIVE: SECCIÓN UBICACIÓN Y CONTACTO (CONTACTO.CSS)
   ========================================================================== */
.contacto-ubicacion-section {
    padding: 80px 0;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.contacto-info-card {
    background-color: var(--white, #ffffff);
    border: 1px solid rgba(3, 18, 41, 0.08);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(3, 18, 41, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacto-info-header {
    margin-bottom: 25px;
}

.contacto-info-header .section-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--navy-blue, #031229);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.contacto-info-header .section-title {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--navy-blue, #031229);
    margin-bottom: 12px;
    line-height: 1.2;
}

.contacto-main-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

.contacto-details-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.contacto-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contacto-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.35);
    color: var(--primary-yellow, #ffc107);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contacto-detail-text h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy-blue, #031229);
    margin-bottom: 2px;
}

.contacto-detail-text p {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.45;
}

/* Botón más llamativo (Efecto brillo y profundidad premium) */
.contacto-action-wrapper {
    margin-top: 10px;
}

.contacto-info-card .btn-gold,
.contacto-info-card .btn {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: var(--navy-blue, #031229);
    border: none;
    font-weight: 900;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    letter-spacing: 0.5px;
    width: 100%;
}

.contacto-info-card .btn-gold:hover,
.contacto-info-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #ffca2c 0%, #d39e00 100%);
}

.contacto-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(3, 18, 41, 0.08);
    box-shadow: 0 5px 25px rgba(3, 18, 41, 0.05);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* ==========================================================================
   RESPONSIVE DESIGN - CONTACTO (TABLETS Y MÓVILES)
   ========================================================================== */

@media screen and (max-width: 992px) {
    .contacto-ubicacion-section {
        padding: 60px 0;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacto-map-wrapper,
    .map-container {
        min-height: 400px;
    }
}

@media screen and (max-width: 576px) {
    .contacto-ubicacion-section {
        padding: 45px 0;
    }

    .contacto-info-card {
        padding: 25px 20px;
        border-radius: 10px;
    }

    .contacto-info-header .section-title {
        font-size: 1.5rem;
    }

    .contacto-main-desc {
        font-size: 0.9rem;
    }

    .contacto-details-list {
        gap: 15px;
        margin-bottom: 25px;
    }

    .contacto-detail-item {
        gap: 12px;
    }

    .contacto-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contacto-detail-text h3 {
        font-size: 0.88rem;
    }

    .contacto-detail-text p {
        font-size: 0.83rem;
    }

    .contacto-info-card .btn-gold,
    .contacto-info-card .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .contacto-map-wrapper,
    .map-container {
        min-height: 320px;
    }
}

/* ==========================================================================
   ESTILOS PREMIUM: BANNER CTA INFERIOR (CONTACTO.CSS)
   ========================================================================== */
.equipos-bottom-cta {
    background: linear-gradient(135deg, var(--navy-blue, #031229) 0%, #0d2347 100%);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 12px;
    padding: 35px 40px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(3, 18, 41, 0.2);
}

.equipos-bottom-cta .cta-content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.equipos-bottom-cta .cta-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.35);
    color: var(--primary-yellow, #ffc107);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.equipos-bottom-cta .cta-text-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.equipos-bottom-cta .cta-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white, #ffffff);
    letter-spacing: 0.3px;
}

.equipos-bottom-cta .cta-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Botón llamativo con degradado y efecto hover superior para el CTA */
.equipos-bottom-cta .btn-gold,
.equipos-bottom-cta .btn {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: var(--navy-blue, #031229);
    border: none;
    font-weight: 900;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.equipos-bottom-cta .btn-gold:hover,
.equipos-bottom-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #ffca2c 0%, #d39e00 100%);
}

/* ==========================================================================
   RESPONSIVE DESIGN - BANNER CTA INFERIOR
   ========================================================================== */

@media screen and (max-width: 992px) {
    .equipos-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        margin: 40px auto;
        gap: 25px;
    }

    .equipos-bottom-cta .btn,
    .equipos-bottom-cta .btn-gold {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .equipos-bottom-cta {
        padding: 25px 20px;
        margin: 30px auto;
        border-radius: 10px;
    }

    .equipos-bottom-cta .cta-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .equipos-bottom-cta .cta-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .equipos-bottom-cta .cta-title {
        font-size: 1.1rem;
    }

    .equipos-bottom-cta .cta-desc {
        font-size: 0.85rem;
    }

    .equipos-bottom-cta .btn-gold,
    .equipos-bottom-cta .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}