        /* Contenedor principal - centrado en la pantalla */
        .contenedor-lista {
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
            background: white;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(9, 83, 116, 0.05);
            border-top: 8px solid var(--azul);
            border-bottom: 8px solid var(--azul);
            
        }

        .contenedor-flex {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .texto-lado {
            flex: 1;
        }

        .imagen-lado {
            flex: 0.8;
        }

        .imagen-lado img {
            width: 100%;
            border-radius: 20px;
            height: 400px ;
            object-fit: cover;
        }

        .badge {
            background: var(--verde);
            color: var(--gris);
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 1rem;
        }

        h2 {
            color: var(--azul);
            font-size: 2rem;
            margin-bottom: 1rem;
                padding-left: 1rem;
        }

        p {
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .lista-puntos {
            list-style: none;
            margin: 1.5rem 0;
        }

        .lista-puntos li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--gris);
        }

        .lista-puntos li i {
            color: var(--verde);
        }

        @media (max-width: 992px) {
            .contenedor-flex {
                flex-direction: column;
            }

            .imagen-lado img {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .contenedor-lista {
                padding: 1.5rem;
            }

            h2 {
                font-size: 1.5rem;
            }

        }

        @media (max-width: 480px) {
            .imagen-lado img {
                height: 200px;
            }

            .lista-puntos li {
                font-size: 0.9rem;
            }
        }
.contenedor-proyectos {
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(9, 83, 116, 0.08);
    border-top: 8px solid var(--azul);
    border-bottom: 8px solid var(--azul);
}

.grid-dos-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* ===== LADO IZQUIERDO - TEXTO ===== */
.texto-info h2 {
    color: var(--azul);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-left: 6px solid var(--verde);
    padding-left: 1rem;
}

.texto-info p {
    color: var(--gris);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.lista-servicios {
    list-style: none;
    margin: 1.5rem 0;
}

.lista-servicios li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gris);
}

.lista-servicios li i {
    color: var(--verde);
    font-size: 1rem;
    width: 22px;
}

.badge-verde {
    display: inline-block;
    background: var(--verde-claro);
    color: var(--gris);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== LADO DERECHO - IMAGEN ===== */
.imagen-info {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(9, 83, 116, 0.1);
}

.imagen-info:hover {
    transform: scale(1.02);
}

/* ===== BOTONES ===== */
.botones {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-azul {
    background: var(--azul);
    color: white;
}

.btn-azul:hover {
    background: var(--verde);
    color: var(--gris);
}

.btn-borde {
    background: transparent;
    color: var(--azul);
    border: 2px solid var(--azul);
}

.btn-borde:hover {
    background: var(--azul);
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .grid-dos-columnas {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .imagen-info {
        height: 350px;
    }
}

@media (max-width: 768px) {
    
    .contenedor-proyectos {
        padding: 2rem 1.5rem;
    }
    
    .texto-info h2 {
        font-size: 1.5rem;
    }
    
    .imagen-info {
        height: 280px;
    }
    
    .botones {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .imagen-info {
        height: 220px;
    }
}