.elementor-353 .elementor-element.elementor-element-b2cba1f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-353 .elementor-element.elementor-element-b2cba1f:not(.elementor-motion-effects-element-type-background), .elementor-353 .elementor-element.elementor-element-b2cba1f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-353 .elementor-element.elementor-element-1179e6a > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-353 .elementor-element.elementor-element-1179e6a{text-align:start;}.elementor-353 .elementor-element.elementor-element-1179e6a .elementor-heading-title{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );color:var( --e-global-color-text );}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-353 .elementor-element.elementor-element-ebce489{--divider-border-style:solid;--divider-color:var( --e-global-color-accent );--divider-border-width:1px;}.elementor-353 .elementor-element.elementor-element-ebce489 > .elementor-widget-container{margin:0px 0px 030px 0px;padding:0px 0px 0px 0px;}.elementor-353 .elementor-element.elementor-element-ebce489 .elementor-divider-separator{width:100%;margin:0 auto;margin-center:0;}.elementor-353 .elementor-element.elementor-element-ebce489 .elementor-divider{text-align:center;padding-block-start:10px;padding-block-end:10px;}.elementor-353 .elementor-element.elementor-element-d728a05{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-353 .elementor-element.elementor-element-1179e6a .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-divider .elementor-divider__text{font-size:var( --e-global-typography-secondary-font-size );}}@media(min-width:768px){.elementor-353 .elementor-element.elementor-element-b2cba1f{--content-width:1240px;}}@media(max-width:767px){.elementor-353 .elementor-element.elementor-element-b2cba1f{--margin-top:0100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:10px;--padding-right:010px;}.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}.elementor-353 .elementor-element.elementor-element-1179e6a .elementor-heading-title{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-divider .elementor-divider__text{font-size:var( --e-global-typography-secondary-font-size );}}/* Start custom CSS *//* Filtros */
#eventos-filtros {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: flex-start;
    align-items: center;
}

#eventos-filtros select {
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #222;
    color: #f5f5f5;
    min-width: 160px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#eventos-filtros select:hover {
    border-color: #555;
    background: #2a2a2a;
}

#eventos-filtros select:focus {
    outline: none;
    border-color: #0073aa;
}

/* Grid */
.eventos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.evento-item {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

@media (max-width: 1024px) {
    .evento-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .evento-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}



.evento-item {
    background: #222;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px;
    transition: box-shadow 0.2s ease;
    color: #f5f5f5;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.evento-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.evento-thumb {
    width: 100%;
    padding-top: 100%; /* quadrado */
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    margin-bottom: 10px;
}

.evento-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evento-titulo {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px;
    color: #fff;
}

.evento-data-cidade {
    font-size: 13px;
    color: #ccc;
    margin: 0 0 5px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.2px;
}

.evento-categorias {
    font-size: 12px;
    color: #aaa;
    margin: 0 0 5px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.2px;
}

.evento-aviso {
    font-size: 12px;
    color: #e74c3c;
    font-weight: bold;
    margin: 0 0 5px;
}

.evento-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 13px;
    color: #111;
    background: #FFD700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
    font-weight: 600;
}

.evento-cta:hover {
    background: #e6c200; /* levemente mais escuro no hover */
}

.evento-cta::after {
    content: " »";
    font-weight: normal;
    margin-left: 4px;
}


/* Responsividade */
@media (max-width: 600px) {
    #eventos-filtros {
        flex-direction: column;
    }
    #eventos-filtros select {
        min-width: 100%;
    }
}
/* Navegação do carrossel */
/* Flechas laterais mais discretas */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #FFD700;
    font-size: 80px;
    opacity: 0.1;
    cursor: pointer;
    transition: opacity 0.3s ease, color 0.3s ease;
    background: none;
    border: none;
    
}

.carousel-prev:hover,
.carousel-next:hover {
    opacity: 1;
    color: #FFD700;
    background: none;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Bolinhas de paginação */
.eventos-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 6px;
}

.eventos-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.eventos-dots .swiper-pagination-bullet-active {
    background: #FFD700;
    opacity: 1;
    transform: scale(1.2);
}

/* Link "Ver todos" */
.ver-todos-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ver-todos-link:hover {
    color: #B99C00;
}
.hero-banner {
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 768px) {
    .hero-banner {
        height: 30vh; /* ou até 60vh se quiser mais impacto */
    }

    .hero-banner img {
        object-position: center top; /* foca mais na parte superior da imagem */
    }
}/* End custom CSS */