.Precencia_Seccion {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding: 0;
}

.Precencia_Seccion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
    opacity: 0.5;
    z-index: -1;
}

.map-container {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    z-index: -2;
}

.content-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.Precencia_Seccion .row {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e6edf3;
}

.Precencia_Seccion .left-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.Precencia_Seccion .left-content ul {
    text-align: left;
    list-style: none;
    padding-left: 30%;
}

.Precencia_Seccion .left-content ul li {
    transition: transform 0.2s ease;
    margin-bottom: 10px;
}

.Precencia_Seccion .left-content ul li:hover {
    transform: scale(1.05);
}

.Precencia_Seccion .left-content ul li i {
    margin-right: 10px;
    color: #006906;
}

.Precencia_Seccion .left-content h1 {
    padding-left: 15px;
    position: relative;
    z-index: 3;
}

.Precencia_Seccion img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.img-fluid {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

@media (max-width: 768px) {  
    .img-fluid {
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }
}