/* HERO  */
.hero {
    background: linear-gradient(rgba(14, 73, 190, 0.7), rgba(14, 73, 190, 0.7)),
        url("../../imagenes/honda.jpg") center/cover no-repeat;
    text-align: center;
    color: #FFF;
    padding: 60px 20px;
}

.hero h1 {
    margin-bottom: 10px;
    color: #fff;
}

.hero p {
    font-size: 1rem;
    color: #fff;
}

/*  CONTENEDOR PRINCIPAL  */
.contenedor {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* BLOQUES DE CONTENIDO */
.bloque {
    background: #d4d4d4;
    border: 1px solid #DDD;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.bloque h2 {
    color: #0e49be;
    margin-bottom: 10px;

}

.bloque p {
    line-height: 1.6;
    font-size: 1rem;
    color: #232323;
}

/* Lista de valores */
.bloque ul {
    list-style: none;
    padding-left: 0;
}

.bloque ul li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
}

.bloque ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* ------------------ RESPONSIVE ------------------ */
@media (min-width: 768px) {

    /* Hero más grande en tablets y escritorio */
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    /* Contenedor principal en dos columnas para bloques */
    .contenedor {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .bloque {
        padding: 25px;
    }
}

@media (min-width: 1024px) {

    /* Hero aún más grande */
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.8rem;
    }

    /* Contenedor en tres columnas si hay suficiente espacio */
    .contenedor {
        grid-template-columns: repeat(3, 1fr);
    }
}
