main {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .info {
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 20px;
        border-bottom: 2px solid #ddd;
    }

        

        .info h2, h3, h4 {color: #005d7c;}
        .info h2 {
            text-align: center;
            font-size: 28px;
            margin-bottom: 20px;
        }
        .info h3 {
            font-size: 24px;
            border-bottom: 2px solid #005d7c;
            padding-bottom: 5px;
            margin-bottom: 15px;
        }

        .info p, #noticias p {
            line-height: 1.6;
            font-size: 16px;
        }

    #empresa section{
        display: flex;
        flex-direction: row;
    }

        #empresa section img{
            width: 50%;
            height: 500px;
        }

@media (max-width: 1250px) {
    #empresa section{flex-direction: column;}
    #empresa section img{
        width: auto;
        margin-top: 10px;
        align-self: center;
    }
}

    #sistema{
        background: #eef5ff;
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
    }

        #sistema h4{margin-bottom: 10px;}

    .r-lista{
        margin-left: 20px;
        line-height: 1.6;
        font-size: 16px;
    }

    #noticias{
        border-bottom: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

        #noticias img {
            width: 100%;
            max-width: 600px;
            display: block;
            margin: 20px auto;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        #noticias div{
            max-width: 475px;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }
        #noticias div img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        #noticias div hr{
            width: 80%;
            margin: 10px 0px;
            color: #005d7c;
        }

@media (max-width: 768px) {
    main {width: 95%;}
    #noticias {flex-direction: column;}
    #noticias div {flex: 1 1 100%;}
}