/* ===========================
   ESTILOS DOS MÓDULOS
   Vídeos, Fotos e Notícias
   =========================== */

/* ===========================
   HEADER DA PÁGINA
   =========================== */
.page-container {
    margin-top: 70px;
}

.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin: 0;
}

.back-link {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-link:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

/* ===========================
   VÍDEOS
   =========================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.video-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===========================
   FOTOS / GALERIAS
   =========================== */
.galerias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.galeria-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.galeria-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.galeria-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.galeria-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-card:hover .galeria-thumbnail img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-card:hover .galeria-overlay {
    opacity: 1;
}

.fotos-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.galeria-info {
    padding: 1.5rem;
}

.galeria-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.galeria-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.galeria-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.galeria-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Galeria de Fotos */
.fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.foto-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.foto-item a {
    display: block;
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.foto-item a:hover img {
    transform: scale(1.1);
}

.foto-item:hover img {
    transform: scale(1.1);
}

.foto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foto-item:hover .foto-overlay {
    opacity: 1;
}

.galeria-descricao {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ===========================
   NOTÍCIAS
   =========================== */
.noticias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.noticia-card:hover {
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.noticia-imagem {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.noticia-card:hover .noticia-imagem img {
    transform: scale(1.05);
}

.noticia-categoria {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF8C00;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.noticia-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.noticia-titulo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.noticia-titulo a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.noticia-titulo a:hover {
    color: #FF8C00;
}

.noticia-resumo {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.noticia-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.noticia-data {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leia-mais {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leia-mais:hover {
    color: #e67e00;
    transform: translateX(5px);
}

/* Notícia Completa */
.noticia-completa {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.noticia-completa img {
    border-radius: 10px;
}

.noticia-titulo {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.noticia-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.meta-item {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.noticia-conteudo {
    margin-top: 2rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.noticia-conteudo p {
    margin-bottom: 1.5rem;
}

.noticia-compartilhar {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.noticia-compartilhar h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===========================
   SIDEBAR
   =========================== */
.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #FF8C00;
    display: inline-block;
}

.widget-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.recent-videos-list,
.noticias-list,
.noticias-recentes-list,
.galerias-list,
.categorias-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-videos-list li,
.noticias-list li,
.noticias-recentes-list li,
.galerias-list li,
.categorias-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.recent-videos-list li:last-child,
.noticias-list li:last-child,
.noticias-recentes-list li:last-child,
.galerias-list li:last-child,
.categorias-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-videos-list a,
.noticias-list a,
.noticias-recentes-list a,
.galerias-list a,
.categorias-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.recent-videos-list a:hover,
.noticias-list a:hover,
.noticias-recentes-list a:hover,
.galerias-list a:hover,
.categorias-list a:hover {
    color: #FF8C00;
    padding-left: 10px;
}

.noticias-list small {
    display: block;
    margin-top: 0.5rem;
}

/* ===========================
   RESPONSIVIDADE
   =========================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .videos-grid,
    .galerias-grid {
        grid-template-columns: 1fr;
    }

    .noticia-card {
        grid-template-columns: 1fr;
    }

    .noticia-imagem {
        height: 200px;
    }

    .noticia-completa {
        padding: 1rem;
    }

    .noticia-titulo {
        font-size: 1.5rem;
    }

    .noticia-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .fotos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .foto-item img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.5rem;
    }

    .videos-grid,
    .galerias-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .noticia-info {
        padding: 1.5rem;
    }

    .noticia-titulo {
        font-size: 1.2rem;
    }

    .fotos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .foto-item img {
        height: 120px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===========================
   CARROSSEL DE VÍDEOS
   =========================== */
.videos-carousel {
    margin-bottom: 2rem;
}

.video-card-carousel {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 0;
}

.video-card-carousel:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.video-thumbnail-carousel {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
}

.video-thumbnail-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card-carousel:hover .video-thumbnail-carousel img {
    transform: scale(1.05);
}

.play-button-carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card-carousel:hover .play-button-carousel {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-card-carousel h5 {
    font-weight: 700;
    color: #333;
    margin: 1rem;
    line-height: 1.4;
}

.video-card-carousel p {
    color: #666;
    font-size: 0.9rem;
    margin: 0 1rem 1rem;
    line-height: 1.5;
}

.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.owl-carousel .owl-item {
    padding: 10px;
}

/* ===========================
   PREVIEW DE GALERIAS
   =========================== */
.galeria-preview {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 250px;
}

.galeria-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.galeria-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-preview:hover img {
    transform: scale(1.1);
}

.galeria-overlay-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-preview:hover .galeria-overlay-preview {
    opacity: 1;
}

.galeria-overlay-preview h5 {
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    margin: 0;
}

/* ===========================
   PREVIEW DE NOTÍCIAS
   =========================== */
.noticia-preview-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.noticia-preview-card:hover {
    transform: translateY(-10px);
}

.noticia-preview-card img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.noticia-preview-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.noticia-preview-card h5 {
    font-weight: 700;
    color: #333;
    margin-top: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.noticia-preview-card:hover h5 {
    color: #FF8C00;
}

.noticia-preview-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===========================
   RESPONSIVIDADE CARROSSEL
   =========================== */
@media (max-width: 768px) {
    .videos-carousel .owl-carousel {
        margin: 0 -10px;
    }

    .video-card-carousel h5 {
        font-size: 1rem;
    }

    .video-card-carousel p {
        font-size: 0.85rem;
    }

    .galeria-preview {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .video-card-carousel h5 {
        font-size: 0.9rem;
        margin: 0.75rem;
    }

    .video-card-carousel p {
        font-size: 0.8rem;
        margin: 0 0.75rem 0.75rem;
    }

    .galeria-preview {
        height: 150px;
    }

    .galeria-overlay-preview h5 {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}


/* ===========================
   CARROSSEL DE ATRAÇÕES
   =========================== */
.atracao-carousel {
    margin-bottom: 2rem;
}

.atracao-card-carousel {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.atracao-card-carousel:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.atracao-icon {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.atracao-card-carousel:hover .atracao-icon {
    transform: scale(1.1);
}

.atracao-card-carousel h5 {
    font-weight: 700;
    color: #333;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.atracao-card-carousel p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Hero buttons styling */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
    }

    .atracao-card-carousel {
        padding: 1.5rem 1rem;
    }

    .atracao-icon {
        font-size: 2.5rem;
    }

    .atracao-card-carousel h5 {
        font-size: 1rem;
    }

    .atracao-card-carousel p {
        font-size: 0.9rem;
    }
}


/* ===========================
   NOTICIA CARD FULL WIDTH
   =========================== */
.noticias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.noticia-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.noticia-imagem {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.noticia-card:hover .noticia-imagem img {
    transform: scale(1.05);
}

.noticia-categoria {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF8C00;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.noticia-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.noticia-titulo {
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.noticia-titulo a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.noticia-titulo a:hover {
    color: #FF8C00;
}

.noticia-resumo {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.noticia-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.noticia-data {
    color: #999;
    font-size: 0.9rem;
}

.noticia-data i {
    margin-right: 0.5rem;
}

.leia-mais {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.leia-mais:hover {
    color: #e67e00;
}

.leia-mais i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.noticia-card:hover .leia-mais i {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 768px) {
    .noticia-card {
        grid-template-columns: 1fr;
    }

    .noticia-imagem {
        height: 200px;
    }

    .noticia-info {
        padding: 1.5rem;
    }

    .noticia-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}


/* ===========================
   NOTÍCIAS CARD CONTAINER
   =========================== */
.noticias-card-container {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.noticias-card-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.noticias-header {
    background: linear-gradient(135deg, #FF8C00 0%, #e67e00 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.noticias-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.noticias-body {
    padding: 2rem;
}

.noticia-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.noticia-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.noticia-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.noticia-item a:hover {
    transform: translateX(10px);
}

.noticia-item img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.noticia-item a:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.noticia-item h5 {
    font-weight: 700;
    color: #333;
    margin: 1rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.noticia-item a:hover h5 {
    color: #FF8C00;
}

.noticia-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.noticias-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
}

.noticias-footer .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
    .noticias-card-container {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .noticias-header {
        padding: 1.5rem;
    }

    .noticias-header h3 {
        font-size: 1.5rem;
    }

    .noticias-body {
        padding: 1.5rem;
    }

    .noticia-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .noticias-footer {
        padding: 1.5rem;
    }
}


/* Notícias 1 por linha */
.noticia-item-full {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    display: block;
    width: 100%;
}

.noticia-item-full:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.noticia-preview-card-full {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.noticia-preview-card-full:hover {
    transform: translateX(10px);
}

.noticia-preview-card-full img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.noticia-preview-card-full:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.noticia-preview-card-full h5 {
    font-weight: 700;
    color: #333;
    margin: 1rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.noticia-preview-card-full:hover h5 {
    color: #FF8C00;
}

.noticia-preview-card-full p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* ===========================
   NOTÍCIAS - CARDS INDIVIDUAIS
   =========================== */
.noticia-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.noticia-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.noticia-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.noticia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.noticia-card:hover .noticia-image img {
    transform: scale(1.1);
}

.noticia-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.noticia-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.noticia-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.noticia-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #999;
    margin-top: auto;
}

.noticia-meta i {
    color: var(--primary-color);
}


/* ===========================
   ATRAÇÕES MUSICAIS CAROUSEL
   =========================== */
.atracoes-carousel {
    padding: 20px 0;
}

.atracoes-carousel .item {
    padding: 10px;
}

.atracao-card-carousel {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.atracao-card-carousel:hover {
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
    transform: translateY(-5px);
}

.atracao-image-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
}

.atracao-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.atracao-card-carousel:hover .atracao-image-carousel img {
    transform: scale(1.05);
}

.atracao-card-carousel h5 {
    padding: 12px 10px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.owl-carousel .owl-nav {
    display: none !important;
}

.owl-carousel .owl-nav button {
    background: rgba(255, 140, 0, 0.8) !important;
    color: white !important;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    display: none !important;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-nav button:hover {
    background: #FF8C00 !important;
    transform: scale(1.1);
}

.owl-carousel .owl-dots {
    text-align: center;
    padding: 20px 0 0 0;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
    display: none;
}
