.mapa {
    /* padding: 100px 0; */
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
    overflow: hidden;
    position: relative;
}

.mapa-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mapa-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #122841;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.mapa-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.mapa .container-custom {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    padding: 40px;
    gap: 60px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.mapa .left {
    flex: 1;
    position: relative;
}

.mapa .img-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mapa .img-box:hover {
    transform: scale(1.02);
}

.mapa .img-box img {
    width: 100%;
    display: block;
    filter: saturate(1.2);
}

.mapa .right {
    flex: 1;
}

.mapa .right h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mapa .right h2::before {
    content: "";
    width: 40px;
    height: 4px;
    background: #1abc9c;
    border-radius: 2px;
}

.mapa .right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    text-align: justify;
    margin-bottom: 30px;
}

.mapa-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}
.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}
.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}
.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1abc9c;
}

.stat-item .label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 992px) {
    .mapa .container-custom {
        flex-direction: column;
        padding: 30px;
        gap: 40px;
    }

    .mapa .left,
    .mapa .right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mapa {
        padding: 60px 0;
    }

    .mapa-header h1 {
        font-size: 2rem;
    }

    .mapa .right h2 {
        font-size: 1.5rem;
    }

    .mapa-stats {
        grid-template-columns: 1fr;
    }
}

.squiggle-separator {
    width: 100%;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 20" preserveAspectRatio="none"><path d="M0,10 C150,20 350,0 500,10 C650,20 850,0 1000,10 C1150,20 1200,10 1200,10 L1200,20 L0,20 Z" fill="%23f1c40f"/></svg>');
    background-size: cover;
    margin: 40px 0;
}
