@import url("/css/main.css");

/*============ BANNER ============*/
.banner-wapper {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url(/assets/img/Img-Blog/port.jpg);
}
.banner-gradien {
    margin: 0;
}
.banner-titulo {
    font-size: 80px;
    line-height: 800px;
    font-weight: normal;
    color: white;
    text-align: center;
    margin: 0;
}

/*============ INTRODUCCION ============*/
.introduccion-container {
    max-width: 100%;
    padding: 50px 0;
    margin-top: 50px;
    text-align: center;
}
.introduccion-content {
    display: flex;
    align-items: center; /* Para alinear imágenes y texto en la misma altura */
    justify-content: center;
    gap: 7px; /* Espacio entre las imágenes y el texto */
}

.introduccion-content h3 {
    font-weight: normal;
    font-size: 18px;
    margin: 0;
}

.introduccion-content-icono {
    width: 90px;
    height: 80px;
    transform: translateY(
        -40px
    ); /* Ajusta este valor para mover la imagen hacia arriba */
}

/*============ BARRA DE SEPARACIÓN ============*/
.barra-wapper {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center; /* Centra la imagen verticalmente */
}

.barra-img {
    height: auto; /* Mantiene la proporción de la imagen */
    width: 15%;
    max-height: 120%; /* Asegura que la imagen no supere la altura del contenedor */
}

/*============ TITÚLO DE BLOGS ============*/

.blog-container {
    padding: 100px 0;
}

.blog-titulo {
    height: 90px;
    text-align: center;
    padding: 2rem 0;
}
.blog-titulo h2 {
    color: gray;
    font-size: 2.5rem;
    font-weight: 603;
}

/*========== BLOGS ============*/
.blog-content {
    display: grid;
    gap: 2rem;
}

.blog-item h4 {
    color: #000;
    font-size: 2rem;
    font-weight: 500;
    padding: 1rem 0;
}

.blog-content h5 {
    font-size: 1.5;
    font-weight: 400;
    color: #646464;
    padding: 0 0 1rem 0;
}

/*============ BANNER DE CIERRE ============*/
.bannerCierre-wapper {
    margin-top: 8rem;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url(/assets/img/Img-Blog/cierre.png);
}

.bannerCierre-gradien {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.bannerCierre-titulo {
    font-size: 40px;
    line-height: 40px;
    text-align: left;
    margin: 0;
}
.bannerCierre-frace {
    font-weight: normal;
    font-size: 18px;
    margin: 0;
    padding: 3rem 0;
}
@media (min-width: 768px) {
    .blog-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }

    .blog-item h4 {
        color: #000;
        font-size: 1.8rem;
        font-weight: 500;
        padding: 1rem 0;
    }

    .blog-content h5 {
        font-size: 1.5;
        font-weight: 400;
        color: #646464;
        padding: 0 0 1rem 0;
    }
}
