header nav ul li:nth-child(4) a {
    font-weight: 700;
}

@media only screen and (min-width: 0px), (min-device-width: 0px) {
    .box-container, .box-content-container {
        width: 1165px;
        margin: 0 auto;
    }

    /* Hero Section */
    .hero {
        margin-top: 205px; /* Altura do header */
        display: flex;
        width: 100%;
        color: var(--white);
        text-align: center;
        align-items: center;
        justify-content: center;

        .background-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 643px;
            z-index: -1;
        }

        .hero-content {
            /* max-width: 1150px; */
            margin: 0 auto;
            align-items: center;

            .subtitle {
                margin-top: 46px;
                font-size: 20px;
                color: var(--white);
                text-align: center;
                font-weight: 400;
            }
        }

        .hero-content h1 {
            font-weight: 700;
            font-size: 42px;
            line-height: 1.2;
            text-align: left;
        }
    }

    .featured-section {
        color: var(--white);
        width: 1113px;
        margin: 301px auto 0 auto;

        .background-image { 
            height: 1874px;
            width: 100%;
            position: absolute;
            top: 543px;
            left: 0;
            z-index: -1;
        }

        .plane-vetor {
            height: 183px;
            position: absolute;
            top: 715px;
            right: 0;
        }

        .plane-vetor-mobile {
            display: none;
        }

        .section-header {
            text-align: center;
            align-items: center;
            color: var(--black);

            img {
                width: 34px;
            }

            h2 {
                margin-top: 15px;
                font-size: 39px;
                font-weight: 700;
            }
        }

        .featured-article {
            margin-top: 75px;
            gap: 50px;

            .featured-image {
                width: 567px;
                height: 384px;
                border-radius: 15px;
                object-fit: cover;
            }

            .featured-content {
                width: 496px;
                padding: 25px 0;

                .article-source {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 16px;
                    font-weight: 600;
                    color: var(--black);

                    img {
                        height: 24px;
                    }
                }

                h3 {
                    font-size: 32px;
                    font-weight: 700;
                    color: var(--black);
                    margin-top: 35px;
                }

                .article-text {
                    color: var(--black);
                    margin-top: 25px;
                    font-size: 16px;

                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                }

                .read-more-link {
                    display: flex;
                    align-items: center;
                    margin-top: auto;
                    gap: 10px;
                    font-size: 16px;
                    font-weight: 700;
                    text-decoration: none;
                    color: var(--black);

                    img {
                        width: 25px;
                    }
                }
            }
        }

        .vetor-mobile {
            display: none;
        }
    }

    .featured-wave {
        width: 100%;
        height: 285px;
        margin-top: -40px;
        z-index: -1;
    }

    .search-section {
        display: none;
        margin-top: 65px;
        /* display: flex; */
        justify-content: center;

        .search-container {
            align-items: flex-end;
            justify-content: center;
            width: 769px;
            height: 54px;
            
            .search-icon {
                height: 22px;
                position: absolute;
                align-self: flex-start;
                margin-left: 33px;
            }

            .search-input {
                /* margin-left: 15px;
                border: none;
                outline: none;
                background-color: transparent;
                font-size: 16px; */
                border: none;
                outline: none;

                font-size: 16px;

                width: 769px;
                height: 54px;
                background-color: var(--white);
                border-radius: 30px;
                padding: 0 35px 0 70px;
                box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.35);
                border: 1px solid var(--border-color);
            }

            .search-input::placeholder {
                font-weight: 500;
                color: #A7A7A7;
                font-style: normal;
                font-family: 'Montserrat', sans-serif;
            }

            .search-button {
                display: flex;
                align-items: center;
                position: absolute;

                gap: 10px;
                border: none;
                background-color: transparent;
                color: var(--dark-blue);
                font-size: 14px;
                font-weight: 800;
                cursor: pointer;
                margin-right: 35px;

                img {
                    width: 28px;
                }
            }
        }
    }

    .news-feed-section {
        width: 1113px;
        margin: 69px auto 0 auto;
        gap: 50px;
        justify-content: center;

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--black);

            display: flex;
            align-items: center;
            gap: 15px;
        }

        .news-list {
            margin-top: 35px;
            gap: 35px;

            .news-item {
                cursor: pointer;
                display: flex;
                width: 769px;
                /* gap: 25px; */
                background-color: #FAFAFA;
                padding: 20px;
                border-radius: 20px;
                /* transition: box-shadow 0.3s ease, transform 0.3s ease; */

                .news-item-img {
                    width: 260px;
                    height: 210px;
                    object-fit: cover;
                    border-radius: 20px;
                }

                .news-item-info {
                    margin-left: 30px;
                    justify-content: center;
                    width: 438px;

                    .news-meta {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        font-size: 16px;
                        font-weight: 600;
                        color: var(--black);

                        img {
                            height: 20px;
                        }
                    }

                    h4 {
                        margin-top: 20px;
                        font-size: 20px;
                        font-weight: 700;
                        color: var(--black);
                    }

                    p {
                        font-size: 16px;
                        margin-top: 10px;
                        color: #484848;

                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-line-clamp: 3;
                        -webkit-box-orient: vertical;
                    }
                }
            }

            /* .news-item:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
                } */
        }

        .pagination {
            margin-top: 35px;

            ul {
                display: flex;
                justify-content: center;
                align-items: center;
                list-style: none;
                padding: 0;
                gap: 8px;
            }

            li {
                width: 41px;
                text-align: center;
                cursor: pointer;
                user-select: none;
            }

            .page-link, .page-number {
                display: block;
                padding: 8px 14px;
                color: var(--text-secondary);
                background-color: var(--white);
                border: 1px solid #E0E0E0;
                border-radius: 4px;
                text-decoration: none;
                transition: all 0.3s;
            }

            .page-link:hover, .page-number:hover {
                background-color: #FAFAFA;
                border-color: #aaa;
            }

            .page-link.active, .page-number.active {
                background-color: var(--dark-blue);
                color: var(--white);
                border-color: var(--dark-blue);
                font-weight: 700;
            }

            .page-link.disabled, .page-number.disabled {
                color: #ccc;
                pointer-events: none;
                border-color: #eee;
            }
        }

        .trending-card {
            margin-top: 35px;
            background-color: #FAFAFA;
            width: 291px;
            border-radius: 20px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;

            .trending-item {
                cursor: pointer;
                border-bottom: 1px solid #D8D8D8;
                padding-bottom: 20px;
                gap: 10px;

                .trending-meta {
                    font-size: 12px;
                    color: var(--black);
                    font-weight: 600;
                }

                .trending-title {
                    font-size: 16px;
                    color: var(--black);
                }

                .read-more {
                    font-size: 12px;
                    font-weight: 700;
                    color: var(--black);
                    text-decoration: underline;
                }
            }

            .last {
                border-bottom: none;
                padding-bottom: 5px;
            }
        }
    }

    .destinations-section {
        margin-top: 100px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;

        .destinations-title {
            font-size: 39px;
            color: var(--black);
            font-weight: 700;
        }

        .destinations-subtitle {
            font-size: 20px;
            color: var(--black);
            width: 624px;
            margin: 30px auto 0 auto;
        }

        .destinations-grid {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            margin-top: 75px;
            gap: 50px;
            width: 100%;

            .destination-item {
                cursor: pointer;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;

                .destination-card {
                    align-items: center;
                    justify-content: center;

                    .border-card {
                        width: 271px;
                        height: 360px;
                        border-radius: 90px;
                        border: 5px solid #C1C1C1;
                        box-shadow: inset 0 13px 10px #00000040;
                        transition: transform 0.4s ease, box-shadow 0.4s ease;
                        position: absolute;
                    }

                    img {
                        width: 271px;
                        height: 360px;
                        object-fit: cover;
                    }
                }

                .destination-info {
                    margin-top: 25px;
                    color: var(--black);

                    h3 {
                        font-size: 20px;
                        font-weight: 700;
                    }
                }
            }

            .placeholder { 
                width: 214px;
                height: 360px;

                .destination-card .gradient-left {
                    width: 214px;
                    height: 360px;
                    background-image: linear-gradient(to right, #FFFFFF , #FFFFFF00);
                    z-index: 10;
                }

                .destination-card .gradient-right {
                    width: 214px;
                    height: 360px;
                    background-image: linear-gradient(to left, #FFFFFF , #FFFFFF00);
                    z-index: 10;
                }

                .destination-card .left { 
                    width: 214px;
                    border-radius: 0 90px 90px 0;
                    background-color: #EEEEEE;
                }

                .destination-card .right { 
                    width: 214px;
                    border-radius: 90px 0 0 90px;
                    background-color: #EEEEEE;
                }
            }
        }

        /* .destination-card:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4), 0 15px 35px rgba(0, 0, 0, 0.3);
        } */

        a {
            margin-top: 3.53vh;
        }
    }
}

@media only screen and (max-width: 560px), (max-device-width: 560px) {
    .box-container, .box-content-container {
        width: 100%;
    }

    /* Hero Section */
    .hero {
        margin-top: 0;
        padding: 205px 32px 210px 32px;
        width: 100%;

        background: url("/assets/backgrounds/news_background_mobile.png");
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;

        .background-image {
            display: none;
        }

        .hero-content {
            /* max-width: 1150px; */

            h1 {
                font-weight: 700;
                font-size: 29px;
                line-height: 1.2;
            }

            .subtitle {
                margin-top: 17px;
                font-size: 16px;
            }
        }
    }

    .featured-section {
        color: var(--white);
        width: 100%;
        margin: -80px 0 0 0;
        
        padding: 49px 0px 0px 0px;
        align-items: end;

        background: url("/assets/backgrounds/mobile_blue_news_background.png");
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;

        .background-image { 
            display: none;
        }

        .plane-vetor {
            display: none;
        }

        .plane-vetor-mobile {
            display: block;
            height: auto;
            position: absolute;
            width: 105px;
            margin-top: 20px;
        }

        .section-header {
            color: var(--white);
            align-self: center;

            img {
                width: 27px;
                filter: brightness(0) invert(1);
            }

            h2 {
                margin-top: 16px;
                font-size: 24px;
            }
        }

        .featured-article {
            margin-top: 46px;
            gap: 20px;
            width: 100%;
            padding: 0 32px;
            flex-direction: column;

            .featured-image {
                width: 100%;
                height: auto;
                border-radius: 15px;
            }

            .featured-content {
                width: 100%;
                padding: 0;

                .article-source {
                    gap: 8px;
                    font-size: 14px;
                    color: var(--white);

                    img {
                        height: 24px;
                        filter: brightness(0) invert(1);
                    }
                }

                h3 {
                    font-size: 16px;
                    color: var(--white);
                    margin-top: 14px;
                }

                .article-text {
                    color: var(--white);
                    margin-top: 20px;
                    font-size: 16px;

                    -webkit-line-clamp: 3;
                }

                .read-more-link {
                    margin-top: 35px;
                    gap: 15px;
                    font-size: 16px;
                    color: var(--white);

                    img {
                        width: 25px;
                        filter: brightness(0) invert(1);
                    }
                }
            }
        }

        .vetor-mobile {
            display: block;
            width: 100%;
            margin-top: 75px;
        }
    }

    .featured-wave {
        display: none;
    }

    .search-section {
        display: none;
    }

    .news-feed-section {
        width: 100%;
        padding: 0 32px;
        margin: 100px 0 0 0;
        gap: 100px;
        flex-direction: column;

        .section-title {
            font-size: 24px;
            gap: 10px;
        }

        .news-list {
            margin-top: 47px;
            gap: 30px;

            .news-item {
                width: 100%;
                background-color: #F7F7F7;
                padding: 25px 20px;
                border-radius: 10px;
                flex-direction: column;

                .news-item-img {
                    width: 100%;
                    height: auto;
                    border-radius: 10px;
                }

                .news-item-info {
                    margin-left: 0;
                    margin-top: 17px;
                    width: 100%;

                    .news-meta {
                        gap: 7px;
                        font-size: 12px;

                        img {
                            height: 17px;
                        }
                    }

                    h4 {
                        margin-top: 17px;
                        font-size: 16px;
                    }

                    p {
                        font-size: 14px;
                        margin-top: 17px;
                        color: #484848;

                        -webkit-line-clamp: 4;
                    }
                }
            }

            /* .news-item:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
                } */
        }

        .pagination {
            display: none;
            /* margin-top: 35px;

            ul {
                display: flex;
                justify-content: center;
                align-items: center;
                list-style: none;
                padding: 0;
                gap: 8px;
            }

            li {
                width: 41px;
                text-align: center;
                cursor: pointer;
                user-select: none;
            }

            .page-link, .page-number {
                display: block;
                padding: 8px 14px;
                color: var(--text-secondary);
                background-color: var(--white);
                border: 1px solid #E0E0E0;
                border-radius: 4px;
                text-decoration: none;
                transition: all 0.3s;
            }

            .page-link:hover, .page-number:hover {
                background-color: #FAFAFA;
                border-color: #aaa;
            }

            .page-link.active, .page-number.active {
                background-color: var(--dark-blue);
                color: var(--white);
                border-color: var(--dark-blue);
                font-weight: 700;
            }

            .page-link.disabled, .page-number.disabled {
                color: #ccc;
                pointer-events: none;
                border-color: #eee;
            } */
        }

        .trending-card {
            margin-top: 35px;
            background-color: transparent;
            width: 100%;
            border-radius: none;
            padding: 0;
            gap: 25px;

            .trending-item {
                cursor: pointer;
                border-bottom: 2px solid #EFEFEF;
                padding-bottom: 25px;
                gap: 15px;

                .trending-meta {
                    font-size: 14px;
                }

                .trending-title {
                    font-size: 16px;
                    font-weight: 400;
                    color: var(--black);
                }

                .read-more {
                    font-size: 10px;
                }
            }

            .last {
                border-bottom: none;
                padding-bottom: 5px;
            }

            .btn-default {
                display: none;
            }
        }
    }

    .destinations-section {
        width: 100%;
        margin-top: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;

        .destinations-title {
            font-size: 24px;
            width: 100%;
            padding: 0 32px;
        }

        .destinations-subtitle {
            font-size: 16px;
            margin: 20px auto 0 auto;
            width: 100%;
            padding: 0 32px;
        }

        .destinations-grid {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            margin-top: 50px;
            gap: 30px;
            width: 100%;
            overflow: hidden;

            .destination-item {
                .destination-card {
                    .border-card {
                        display: none;
                    }

                    img {
                        width: 225px;
                        height: 300px;
                        border: 5px solid #C1C1C1;
                        border-radius: 80px;
                        box-shadow: inset 0 13px 10px #00000040;
                    }
                }

                .destination-info {
                    margin-top: 50px;

                    h3 {
                        font-size: 20px;
                        font-weight: 700;
                    }
                }
            }

            .destination-item:nth-child(2),
            .destination-item:nth-child(4) {
                h3 {
                    display: none;
                }
            }

            .placeholder { 
                display: none;
            }
        }

        a {
            margin-top: 25px;
        }
    }
}