    /* noticias styles */
        .news {
            padding: 80px 0;

            background: linear-gradient(179.73deg, #D3D3D3 0.23%, #D2D2D2 0.24%, #EDEDED 11.64%, rgba(237, 237, 237, 0) 66.59%, #EDEDED 89.92%, #D5D5D5 99.77%);

        }

        .news .container {
            width: 100%;
            max-width: 1200px;

            margin: 0 auto;

            padding: 70px;

            border-radius: 10px;

            background: white;
        }

        .news .container h2 {
            margin: 0;

            text-align: center;

            font-family: "PT Serif", serif;
            font-size: 56px;
            font-weight: 700;
        }

        .news .line {
            width: 60px;
            height: 4px;

            margin: 15px auto;

            background: #ECB664;
        }

        .news .subtitle {
            text-align: center;
        font-size: 20px;
            margin-bottom: 60px;

        }

        .news .items {
            display: flex;

            justify-content: center;

            gap: 60px;

        }

        .news .item {
            width: 260px;

        }

        .news .item img {
            width: 100%;
            height: 220px;

            object-fit: cover;
            object-position: center;
        }

        .news .item .date {
            display: block;

            margin-top: 20px;

            font-size: 14px;

        }

        .news .item h3 {
            margin-top: 15px;

            font-family: "PT Serif", serif;
            font-size: 20px;
            font-weight: 400;

        }

        .news .item a {
            display: flex;

            align-items: center;

            gap: 10px;

            margin-top: 20px;

            text-decoration: none;

            color: black;

            font-style: italic;

        }

        .news .item a img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .news .button {
            display: flex;

            justify-content: center;
            align-items: center;
            margin: 50px auto 0 auto;
            text-align: center;
            text-decoration: none;
            width: fit-content;
            color: black;
            padding: 15px 25px ;
            background: #ECB664;
            border-radius: 6px;
            font-size: 20px;
        }