/* ===== eventos culturais===== */
.herogal-section {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
   
  
}


.herogal-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
  
    margin: 80px 0;
      
}

.herogal-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: 0.0625rem solid #D6B377;
    border-radius: 0.625rem;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
}

.herogal-item:hover {
    border: 0.125rem solid #D6B377;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 179, 119, 0.3);
}

.herogal-evento-wrapper {
    display: block;
    position: relative;
    width: 100%;
}

.herogal-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.herogal-evento-containers {
    display: flex;
    position: relative;
}

.herogal-evento-box {
    background-color: #1f1d1d;
    padding: 15px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.herogal-evento-box.middle {
    flex: 1.3;
    margin-top: -15px;
    padding-top: 10px;
    border-radius: 20px 20px 0 0 ;


    
}

.herogal-evento-box p {
    margin: 0;
    color: white;
    font-size: 13px;
    line-height: 1.2;
}




.herogal-evento-box h3 {
    font-size: 14px;
     line-height: 1.2;
    font-weight: 600;
    margin-bottom: 3px;
}
/* ============================================
   BREAKPOINTS PROFISSIONAIS
============================================ */

/* Desktop médio */
@media (max-width: 1400px) {
    .herogal-item img {
        height: 340px;
    }

    .herogal-container {
        padding: 0 40px;
    }
}

/* Tablet grande */
@media (max-width: 1024px) {

    .herogal-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }

    .herogal-item img {
        height: 300px;
    }
   
    }
  
    /* Tablet pequeno / Celular grande */
@media (max-width: 768px) {

    

    .herogal-container {
        grid-template-columns: 1fr;
        padding: 0 25px;
    }

    .herogal-item img {
        height: 260px;
    }

}
    
 /* Celular pequeno */
@media (max-width: 480px) {

    .herogal-container {
        padding: 0 18px;
    }

    .herogal-item img {
        height: 300px;
    }

   
    
}

@media (max-width: 300px) {
.video-fullwidth {
        height: 40vh; 
    
}}