/* -------------------------------------------------------
   BANNER PRINCIPAL – PARQUES SOLARES
------------------------------------------------------- */
.solar-banner {
    height: 520px;
    background-image: url("../assets/img/parques_solares/parque_solar_banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 4px solid #005bbb;
}

.solar-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.solar-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 3.2rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .solar-banner {
        height: 360px;
        background-attachment: scroll !important;
    }
}

@media (max-width: 480px) {
    .solar-banner {
        height: 280px;
    }
}

/* -------------------------------------------------------
   GRILLA DE SERVICIOS
------------------------------------------------------- */
.solar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    margin-bottom: 25px;
}

.solar-item {
    background: #f7f9fc;
    border-left: 4px solid #005bbb;
    padding: 15px 18px;
    border-radius: 4px;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #333;
    transition: 0.2s ease-in-out;
}

.solar-item:hover {
    background: #eef4ff;
}

/* -------------------------------------------------------
   APLICACIONES INDUSTRIALES
------------------------------------------------------- */
.solar-aplicaciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.solar-aplicacion {
    background: #f7f9fc;
    border-left: 4px solid #005bbb;
    padding: 18px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s ease-in-out;
}

.solar-aplicacion:hover {
    background: #eef4ff;
}

.solar-icon {
    font-size: 1.8rem;
}
