/* ===================================================== */
/* 🗺 ATLAS INTERACTIVO STYLES */
/* ===================================================== */

.atlas-wrapper {
    max-width: 1240px;
    margin: 90px auto 60px;
    padding: 0 20px;
}

.atlas-hero {
    text-align: center;
    padding: 40px 20px 30px;
    margin-bottom: 30px;
}

.atlas-hero-icon {
    font-size: 3.2rem;
    color: var(--gold-bright);
    filter: drop-shadow(0 0 15px var(--gold-glow));
    margin-bottom: 12px;
}

.atlas-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 0 20px var(--gold-glow);
}

.atlas-subtitle {
    font-family: var(--font-heading);
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* ATLAS GRID */
.atlas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.atlas-card {
    background: linear-gradient(180deg, rgba(22, 6, 6, 0.9) 0%, rgba(10, 2, 2, 0.95) 100%);
    border: 1.5px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.atlas-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-bright);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 25px var(--gold-glow);
}

.atlas-banner-wrapper {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.atlas-banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.atlas-card:hover img {
    transform: scale(1.08);
}

.atlas-content {
    padding: 20px;
}

.zone-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(226, 183, 20, 0.15);
    color: var(--gold-bright);
    border: 1px solid rgba(226, 183, 20, 0.3);
    margin-bottom: 10px;
}

.atlas-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.atlas-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .atlas-wrapper {
        margin-top: 100px;
    }
}
