/* -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- */
/*														HEADINGS												  */
/* -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- */

.novedades-page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #18819f;
    color: #fff;
    border-radius: 5px;
    height: 60px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: 100%;
	margin: 20px auto;
}

.novedades-page-header-center {
    font-size: 1.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
    .novedades-page-header-center {
		font-size: 1.8rem;
    }
}

@media (max-width: 900px) {
    .novedades-page-header-center {
		font-size: 1.7rem;
    }
}

@media (max-width: 600px) {
    .novedades-page-header-center {
		font-size: 1.1rem;
    }
}

/* -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- */
/*														TRANSPORT  												  */
/* -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- */

.novedades-page_container {
    max-width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.novedades-page_title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.novedades-page_description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.novedades-page_section {
    margin-bottom: 20px;
}

.novedades-page_section h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 2px solid #18819f;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.novedades-page_section h2 i {
    font-size: 22px;
    color: #18819f;
}

.novedades-page_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.novedades-page_item {
    background: linear-gradient(135deg, #18819f, #5ab1e1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    width: 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.novedades-page_item:hover {
    background: linear-gradient(135deg, #5ab1e1, #18819f);
    transform: scale(1.05);
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
    .novedades-page_title {
        font-size: 22px;
    }

    .novedades-page_section h2 {
        font-size: 18px;
    }

    .novedades-page_section h2 i {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .novedades-page_list {
        align-items: center;
    }

    .novedades-page_item {
        width: 100%;
        max-width: 150px;
        margin-bottom: 10px;
    }

    .novedades-page_title {
        font-size: 20px;
    }

    .novedades-page_section h2 {
        font-size: 16px;
    }

    .novedades-page_section h2 i {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .novedades-page_title {
        font-size: 18px;
    }

    .novedades-page_description {
        font-size: 14px;
    }

    .novedades-page_section h2 {
        font-size: 14px;
    }

    .novedades-page_section h2 i {
        font-size: 16px;
    }

    .novedades-page_item {
        width: 100%;
        max-width: 120px;
        font-size: 14px;
        padding: 8px 10px;
    }
}

/* GALLERY NEW */

.novedades-page_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.novedades-page_gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* COLUMN MODIFIERS */
.novedades-page_gallery.columns-2 img {
    width: calc(50% - 8px);
}

.novedades-page_gallery.columns-3 img {
    width: calc(33.333% - 10.67px);
}

.novedades-page_gallery.columns-4 img {
    width: calc(25% - 12px);
}

.novedades-page_gallery.columns-5 img {
    width: calc(20% - 12.8px);
}

/* HOVER EFFECT */
.novedades-page_gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 900px) {
    .novedades-page_gallery img {
        width: calc(50% - 8px);
    }
}

@media (max-width: 600px) {
    .novedades-page_gallery img {
        width: 100%;
    }
}
