.blogs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

.blogs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #096CF1;
    font-weight: 800;
    margin-bottom: 20px;
}

.blog {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 380px;
}

.blog:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.blog .top {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog:hover .top img {
    transform: scale(1.08);
}

.blog .texto {
    padding: 20px;
}

.blog .texto span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #F68B1F;
    letter-spacing: 0.5px;
}

.blog .texto h3 {
    margin: 10px 0;
    font-size: 1.4rem;
    color: #096CF1;
    font-weight: 800;
}

.blog .texto p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5em;
}


.contenedorgeneral h2 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 800;
    color: #F68B1F;
    position: relative;
}

.contenedorgeneral h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #096CF1;
    border-radius: 4px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}



.nota-blog {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
}

.nota-blog h2 {
    text-align: center;
    font-size: 2.3em;
    color: #F68B1F;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.nota-blog h2::after {
    content: "";
    width: 100px;
    height: 4px;
    background: #096CF1;
    border-radius: 4px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.fila {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.fila.invertida {
    flex-direction: row-reverse;
}

.fila img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.col.texto h3 {
    color: #096CF1;
    margin-bottom: 10px;
    font-size: 1.6em;
    font-weight: 700;
}

.col.texto p {
    font-size: 1.1em;
    line-height: 1.7em;
    color: #5a5a5a;
    text-align: justify;
    margin: 10px 0;
}

.col.texto ul {
    margin: 10px 0 20px;
    padding-left: 25px;
}

.col.texto ul li {
    font-size: 1.1em;
    line-height: 1.7em;
    color: #5a5a5a;
    margin-bottom: 8px;
    list-style: disc;
}

li::marker {
  color: #F68B1F;
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    background: #096CF1;
    color: #fff;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: 0.25s ease;
}

.btn-link:hover {
    background: #F68B1F;
}

@media (max-width: 900px) {

    .fila,
    .fila.invertida {
        flex-direction: column;
        text-align: left;
    }

    .fila img {
        width: 100%;
        width: 250px;
        height: 250px;
    }

    .col.texto p,
    .col.texto ul li {
        hyphens: auto;
    }
}