/* ============================================
   LOCACIONES PAGE — SPECIFIC STYLES
   ============================================ */

/* ---- Coverage Banner (National Emphasis) ---- */
.coverage-section {
    opacity: 1;
    transform: none;
    transition: none;
}

.coverage-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--gradient-primary);
    border-radius: var(--round-radius);
    overflow: hidden;
    min-height: 420px;
}

.coverage-content {
    padding: 3.5rem;
    color: var(--base-darker);
}

.coverage-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    background: var(--base-darker);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.coverage-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--base-darker);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.coverage-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--base-darker);
    margin-bottom: 2rem;
}

.coverage-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.coverage-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.coverage-stat strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    font-family: 'Sen', sans-serif;
}

.coverage-stat span {
    font-size: 0.85rem;
    color: var(--base-darker);
    font-weight: 500;
}

.coverage-map {
    height: 100%;
    min-height: 420px;
}

.coverage-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---- Locations Grid ---- */
.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    background: var(--white);
    border-radius: var(--round-radius);
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(33, 53, 75, 0.08);
    border: 1px solid rgba(56, 65, 73, 0.08);
    transition: var(--transition-smooth);
    min-height: 360px;
}

.location-card:hover {
    box-shadow: 0 20px 70px rgba(33, 53, 75, 0.14);
    transform: translateY(-4px);
}

/* Map inside card */
.location-map {
    position: relative;
    min-height: 100%;
    background: var(--base-darker);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Image inside card */
.location-image {
    position: relative;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.location-card:hover .location-image img {
    transform: scale(1.04);
}

.location-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-green);
    color: var(--base-darker);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Sen', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
}

/* Info inside card */
.location-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--base-darker);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.location-address {
    font-size: 0.95rem;
    color: var(--base-dark);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--base-dark);
}

.detail-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.location-detail a {
    color: var(--base-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-detail a:hover {
    color: var(--accent-green);
}

.location-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.location-actions .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.3rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .coverage-banner {
        grid-template-columns: 1fr;
    }

    .coverage-map {
        min-height: 300px;
    }

    .location-card {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .location-map {
        min-height: 250px;
    }

    .location-info {
        grid-column: 1 / -1;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .coverage-content {
        padding: 2.5rem 1.5rem;
    }

    .coverage-content h2 {
        font-size: 1.6rem;
    }

    .coverage-highlights {
        gap: 1.5rem;
    }

    .coverage-stat strong {
        font-size: 1.5rem;
    }

    .coverage-map {
        min-height: 250px;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 220px;
    }

    .location-image {
        height: 200px;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-info h3 {
        font-size: 1.3rem;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .coverage-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .coverage-stat {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }
}
