html, body {
    overflow-x: hidden;
    width: 100%;
}

.container-modalidades {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 15%;
    padding-bottom: 10%;
    background-color:#f2f2fa;
    height: auto;
}

.vice-container {
    background-color:  #fcb309;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    border-color:  #fcb309;
    display: grid;
    grid-template-rows: 1fr 3fr;
    color: white; 
    padding-top: 5%;
    padding-right: 5%;
    height: 250px;
}


.d1 {
    display: flex;
    justify-content: center;
  }

.div-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color:  #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.d2 {
    padding-top: 10px;
    padding-left: 25px;
    display: grid;
    grid-template-columns: 0.5fr 3.5fr;
}

.p1-modalidade {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    padding-bottom: 7px;
    text-transform: uppercase;
}
.p2-contacto {
    font-size: 13px;
    color: #000000;
}
.p2-contacto-span {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}
.icon-principal {
    font-size: 22px;
    color: #ffffff; 
}
.icon-local {
    font-size: 10px;
    color: #ffffff; 
    padding-right: 0px;
}
.span-italico {
    text-transform: lowercase;
    font-style: italic;
}
/*------------------------------------ DATA LIMITE ------------- */

.div-data {
    background-image: url("../images/b.jpg");
    width: 100%;
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
   
   
}

.div-data-absolute {
    position: absolute;
    opacity: 0.8;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #011959;
}

.div-textos {
    position: absolute;
}

.data-limite {
    padding-top: 35%;
    padding-left: 15%;
    color: white;
    font-size: 20px;
    font-weight: bold;

}
.a_data {
    
    color: #fcb309;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

.container-anucio-relative1 {
    background-image: url("../images/m.jpg");
    width: 100%;
    height: 540px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .div-img-bg-absolute1 {
    background-color: #ffc107;
    position: absolute;
    opacity: 0.9;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
  }
  
  .texto-absolute1 {
    position: absolute;
    top: 200px;
    left: 10%;
    right: 10%;
  }
  
  .p-concurso-distrital1 {
    font-size: 34px;
    font-weight: bold;
    color: white;
  }
  
  .p-concurso-distrital-span1 {
    font-size: 34px;
    font-weight: bold;
    color: rgb(0, 0, 0);
  }
  
  .p-concurso-distrital-subtitulo1 {
  
    font-size: 20px;
    font-weight: normal;
    color: rgb(0, 0, 0);
  
  }
  
  .p-concurso-distrital-subtitulo-span1 {
  
    font-size: 20px;
    font-weight: normal;
    color: rgb(0, 0, 0);
  
  }
  
  .btn-saber-concurso-distrital1 {
    border: none;
    background-color: black;
    color: white;
    padding: 5px;
    padding-left: 10px ;
    padding-right: 10px;
    border-radius: 3px;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .btn-saber-concurso-distrital1:hover {
    border: none;
    background-color: black;
    color: #ffc107;
    padding: 5px;
    padding-left: 10px ;
    padding-right: 10px;
    border-radius: 3px;
    font-size: 16px;
  }
  /* Estilos gerais */
  .calendar-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #3dd845,  #45A049,#45A049,#3dd845 );
    color: white;
    text-align: center;
  }
  
  .calendar-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .calendar-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .calendar-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .calendar-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .calendar-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .calendar-item p {
    font-size: 1.2rem;
    opacity: 0.8;
  }
  
  /* Animações */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .calendar-title {
      font-size: 2rem;
    }
  
    .calendar-item h3 {
      font-size: 1.3rem;
    }
  
    .calendar-item p {
      font-size: 1rem;
    }
  }
  
  
  /*For extra small device/mobile */
  @media screen and (max-width: 600px) {

.container-anucio-relative1 {
    background-image: url("../images/m.jpg");
    width: 100%;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .div-img-bg-absolute1 {
    background-color: #ffc107;
    position: absolute;
    opacity: 0.9;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
  }
  
  .texto-absolute1 {
    position: absolute;
    top: 25%;
    left: 10%;
    right: 8%;
  }
  
  .p-concurso-distrital1 {
    font-size: 22px;
    font-weight: bold;
    color: white;
    padding-bottom: 15px;
  
  }
  
  .p-concurso-distrital-span1 {
    font-size: 22px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    padding-bottom: 15px;
  }
  
  .p-concurso-distrital-subtitulo1 {
  
    font-size: 14px;
    font-weight: normal;
    color: rgb(0, 0, 0);
    padding-bottom: 15px;;
  
  }
  
  .p-concurso-distrital-subtitulo-span1 {
  
    font-size: 14px;
    font-weight: normal;
    color: rgb(0, 0, 0);
    padding-bottom: 15px;
  
  }
  
  .btn-saber-concurso-distrital1 {
    border: none;
    background-color: black;
    color: white;
    padding: 5px;
    padding-left: 10px ;
    padding-right: 10px;
    border-radius: 3px;
    font-size: 15px;
    margin-top: 10px;
  }
  
  .btn-saber-concurso-distrital1:hover {
    border: none;
    background-color: black;
    color: #ffc107;
    padding: 5px;
    padding-left: 10px ;
    padding-right: 10px;
    border-radius: 3px;
    font-size: 15px;
  }
    .container-modalidades {
        display: grid;
        grid-template-columns:  1fr;
        row-gap: 30px;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 15%;
        padding-bottom: 10%;
        background-color:#f2f2fa;
        height: auto;
    }

    .vice-container {
        background-color:  #fcb309; 
        border-radius: 5px;
        border-style: solid;
        border-width: 1px;
        border-color:  #fcb309;
        display: grid;
        grid-template-rows: 1fr 1fr 3fr;
        color: white; 
        padding-top: 10%;
        padding-bottom: 10%;
        height: auto;
    }

    .div-title {
        padding-top: 20px;
        padding-left: 25px;
        padding-bottom: 0px;
        
    }

    .d2 {
        padding-top: 10px;
        padding-left: 25px;
        display: grid;
        grid-template-columns: 0.5fr 3.5fr;
    }
    .icon-distrito {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0px;
        padding-bottom: 0px;
        margin: 0;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color:  #6b6b6b;
        margin-bottom: 5px;
    } 
.div-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color:  #6b6b6b;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .p1-modalidade {
        font-size: 16px;
        font-weight: bold;
        color: #000000;
        padding-bottom: 7px;
        text-transform: uppercase;
    }

    .p2-contacto {
        font-size: 13px;
        color: #000000;
    }

    .p2-contacto-span {
        font-size: 13px;
        font-weight: bold;
        color: #000000;
    }
    
    .icon-principal {
        font-size: 22px;
        color: #ffffff; 
    }
    
    .icon-local {
        font-size: 10px;
        color: #ffffff; 
        padding-right: 0px;
    }
    
    
    .span-italico {
        text-transform: lowercase;
        font-style: italic;
    }
    /*------------------------------------ DATA LIMITE ------------- */
.div-data {
    background-image: url("../images/in.jpg");
    width: 100%;
    height: 180px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
   
   
}

.div-data-absolute {
    position: absolute;
    opacity: 0.9;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #011959;
}

.div-textos {
    position: absolute;
}

.data-limite {
    padding-top: 30%;
    padding-left: 15%;
    color: white;
    font-size: 16px;
    font-weight: bold;

}
.a_data {
    
    color: #fcb309;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* ----------------------------------- fotos -------------------------*/

  /* Container principal da galeria */
  .gallery-container {
    padding: 20px;
    text-align: center;
}
/* Título da galeria */
.gallery-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-left: 15%;
    padding-right: 15%;
}

/* Grid para organizar as imagens */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
}

/* Estilo de cada item da galeria */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Imagem dentro do item */
.gallery-image {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 10px;
}
/* Overlay com texto */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
/* Texto dentro do overlay */
.gallery-text {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}
  }
  /*For large device/tablet */
  @media screen and (min-width: 600px) {
    .container-modalidades {
        display: grid;
        grid-template-columns:  1fr;
        row-gap: 30px;
        padding-left: 20%;
        padding-right: 20%;
        padding-bottom: 15%;
        padding-bottom: 0%;
        background-color:#f2f2fa;
        height: 1420px;
    }

    .vice-container {
        background-color:  #fcb309;
        border-radius: 5px;
        border-style: solid;
        border-width: 1px;
        border-color:  #fcb309;
        display: grid;
        grid-template-rows: 1fr 3fr;
        color: white; 
        padding-top: 5%;
        height: 220px;
    }

    .d2 {
        padding-top: 10px;
        padding-left: 25px;
        display: grid;
        grid-template-columns: 0.5fr 3.5fr;
    }  
.div-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color:  #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .p1-modalidade {
        font-size: 14px;
        font-weight: bold;
        color: #000000;
        padding-bottom: 7px;
        text-transform: uppercase;
    }
    .p2-contacto {
        font-size: 11px;
        color: #000000;
    }
    .p2-contacto-span {
        font-size: 13px;
        font-weight: bold;
        color: #000000;
    }
    .icon-principal {
        font-size: 20px;
        color: #ffffff; 
    }
    .icon-local {
        font-size: 10px;
        color: #ffffff; 
        padding-right: 0px;
    }
    .span-italico {
        text-transform: lowercase;
        font-style: italic;
    }

/* ----------------------------------- fotos -------------------------*/
  /* Container principal da galeria */
  .gallery-container {
    padding: 20px;
    text-align: center;
}
/* Título da galeria */
.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}
/* Grid para organizar as imagens */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
}

/* Estilo de cada item da galeria */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Imagem dentro do item */
.gallery-image {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 10px;
}
/* Overlay com texto */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
/* Texto dentro do overlay */
.gallery-text {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}  
  } 
  
  /*For device/laptop desktop */
   @media screen and (min-width: 768px) {
       

    .container-modalidades {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 30px;
        padding-left: 15%;
        padding-right: 15%;
        padding-bottom: 15%;
        padding-bottom: 0%;
        background-color:#f2f2fa;
        height: auto;
    }
    
    .vice-container {
        background-color:  #fcb309; 
        border-radius: 5px;
        border-style: solid;
        border-width: 1px;
        border-color:  #fcb309;
        display: grid;
        grid-template-rows: 1fr 3fr;
        color: white; 
        padding-top: 5%;
        padding-right: 5%;
        height: 250px;
    }

    .d2 {
        padding-top: 10px;
        padding-left: 25px;
        display: grid;
        grid-template-columns: 0.5fr 3.5fr;
    }
    
    
    .d1 {
        display: flex;
        justify-content: center;
      }
    
    .div-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color:  #000000;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
   
    .p1-modalidade {
        font-size: 16px;
        font-weight: bold;
        color: #000000;
        padding-bottom: 7px;
        text-transform: uppercase;
    }
    
    .p2-contacto {
        font-size: 12px;
        color: #000000;
    }
    
    .p2-contacto-span {
        font-size: 12px;
        font-weight: bold;
        color: #000000;
    }
    
      
    .icon-principal {
        font-size: 22px;
        color: #ffffff; 
    }
    
    .icon-local {
        font-size: 10px;
        color: #ffffff; 
        padding-right: 0px;
    }
    
    
    .span-italico {
        text-transform: lowercase;
        font-style: italic;
    }
    
    


    
  /* Container principal da galeria */
.gallery-container {
    padding: 20px;
    text-align: center;
}

/* Título da galeria */
.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Grid para organizar as imagens */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 40px;
    padding: 20px;
}

/* Estilo de cada item da galeria */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Imagem dentro do item */
.gallery-image {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 10px;
}

/* Overlay com texto */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

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

/* Texto dentro do overlay */
.gallery-text {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}
      
  }
  
  /* Tamanho de Tela de meu laptop */
  
  @media screen and (min-width: 992px) {
    .container-modalidades {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 30px;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 90px;
        padding-bottom: 90px;
        background-color:#f2f2fa;
        height: auto;
    }
    
    .vice-container {
        background-color:  #fcb309;
        border-radius: 5px;
        border-style: solid;
        border-width: 1px;
        border-color:  #fcb309;
        display: grid;
        grid-template-rows: 1fr 1fr 3fr;
        color: white; 
        padding-top: 5%;
        height: 280px;
    }
    
    
    .d1 {
        display: flex;
        justify-content: center;
      }

     
    .div-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color:  #6b6b6b;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div-title {
        padding-top: 20px;
        padding-left: 25px;
        padding-bottom: 0px;
        
    }
    
 
    
    .d2 {
        padding-top: 0px;
        padding-left: 25px;
        display: grid;
        grid-template-columns: 0.5fr 3.5fr;
        align-items: flex-start;
        
       
    }

    .icon-distrito {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0px;
        padding-bottom: 0px;
        margin: 0;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color:  #6b6b6b;;
    }

    .descricao {
        display: flex;
        align-items: flex-start;
        padding: 0;
        margin: 0;
       
        padding-top: 0px;
        padding-bottom: 0px;

    }


    
    .p1-modalidade {
        font-size: 16px;
        font-weight: bold;
        color: #000000;
        padding-bottom: 7px;
        text-transform: uppercase;
    }
    
    .p2-contacto {
        font-size: 12px;
        padding: 0;
        margin: 0;
        color: #000000;
    }
    
    .p2-contacto-span {
        font-size: 12px;
        font-weight: bold;
        color: #000000;
    }
    
      
    .icon-principal {
        font-size: 22px;
        color: #ffffff; 
    }
    
    .icon-local {
        font-size: 10px;
        color: #ffffff; 
        padding-right: 0px;
    }
    
    
    .span-italico {
        text-transform: lowercase;
        font-style: italic;
    }
    /*------------------------------------ DATA LIMITE ------------- */
    .div-data {
        background-image: url("../images/b.jpg");
        width: 100%;
        height: 240px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        justify-content: center;
       
       
    }
    
    .div-data-absolute {
        position: absolute;
        opacity: 0.8;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-color: #011959;
    }
    
    .div-textos {
        position: absolute;
    }
    
    .data-limite {
        padding-top: 35%;
        padding-left: 15%;
        color: white;
        font-size: 20px;
        font-weight: bold;
    
    }
    .a_data {
        
        color: #fcb309;
        font-size: 26px;
        font-weight: bold;
        text-transform: uppercase;
    }
  
  }
  /* Tamanho de Tela grande (como aquela do office TEN) */
  @media screen and (min-width: 1500px) {

    .container-modalidades {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 30px;
        padding-left: 15%;
        padding-right: 15%;
        padding-top: 150px;
        padding-bottom: 150px;
        background-color:#f2f2fa;
        height: auto;
    }
    
    .vice-container {
        background-color:  #fcb309;
        border-radius: 5px;
        border-style: solid;
        border-width: 1px;
        border-color:  #fcb309;
        display: grid;
        grid-template-rows: 1fr 1fr 3fr;
        color: white; 
        padding-top: 5%;
        height: 300px;
    }
    
    
    .d1 {
        display: flex;
        justify-content: center;
      }
    
    .div-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color:  #6b6b6b;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .d2 {
        padding-top: 10px;
        padding-left: 25px;
    }
    

    .icon-distrito {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0px;
        padding-bottom: 0px;
        margin: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color:  #6b6b6b;
    }

    .p1-modalidade {
        font-size: 16px;
        font-weight: bold;
        color: #000000;
        padding-bottom: 7px;
        text-transform: uppercase;
    }
    
    .p2-contacto {
        font-size: 13px;
        color: #000000;
    }
    
    .p2-contacto-span {
        font-size: 14px;
        font-weight: bold;
        color: #000000;
    }
    
      
    .icon-principal {
        font-size: 22px;
        color: #ffffff; 
    }
    
    .icon-local {
        font-size: 10px;
        color: #ffffff; 
        padding-right: 0px;
    }
    
    
    .span-italico {
        text-transform: lowercase;
        font-style: italic;
    }
    
    
    
    /*------------------------------------ DATA LIMITE ------------- */
    
    
    
    .div-data {
        background-image: url("../images/b.jpg");
        width: 100%;
        height: 240px;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        justify-content: center;
       
       
    }
    
    .div-data-absolute {
        position: absolute;
        opacity: 0.8;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-color: #011959;
    }
    
    .div-textos {
        position: absolute;
    }
    
    .data-limite {
        padding-top: 35%;
        padding-left: 15%;
        color: white;
        font-size: 20px;
        font-weight: bold;
    
    }
    .a_data {
        
        color: #fcb309;
        font-size: 26px;
        font-weight: bold;
        text-transform: uppercase;
    } 
  /* Container principal da galeria */
.gallery-container {
    padding: 20px;
    text-align: center;
}

/* Título da galeria */
.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Grid para organizar as imagens */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 40px;
    padding: 20px;
}

/* Estilo de cada item da galeria */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Imagem dentro do item */
.gallery-image {
    width: 100%;
    height: 500px;
    display: block;
    border-radius: 10px;
}

/* Overlay com texto */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

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

/* Texto dentro do overlay */
.gallery-text {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}


  
  /* Estilos gerais */
  .calendar-section {
    padding: 190px 20px;
    background: linear-gradient(135deg, #3dd845,  #45A049,#45A049,#3dd845 );
    color: white;
    text-align: center;
  }
  
  .calendar-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .calendar-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .calendar-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .calendar-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .calendar-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .calendar-item p {
    font-size: 1.2rem;
    opacity: 0.8;
  }
  
  /* Animações */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .calendar-title {
      font-size: 2rem;
    }
  
    .calendar-item h3 {
      font-size: 1.3rem;
    }
  
    .calendar-item p {
      font-size: 1rem;
    }
  }
  
  }
  @media screen and (orientation: landscape) {
  
  }
  
  
  /* Smooth and subtle transition on hover */
  .group:hover .group-hover:scale-105 {
    transition-duration: 0.7s;
    transition-timing-function: ease-in-out;
    transform: scale(1.05);
}

.group:hover .group-hover:brightness-90 {
    transition-duration: 0.7s;
    transition-timing-function: ease-in-out;
    filter: brightness(90%);
}

.group:hover .group-hover:scale-110 {
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
    transform: scale(1.10);
}

.group:hover .group-hover:bg-opacity-50 {
    transition-duration: 0.7s;
    transition-timing-function: ease-in-out;
    background-color: rgba(0, 0, 0, 0.5);
}

.group:hover .group-hover:opacity-100 {
    transition-duration: 0.7s;
    transition-timing-function: ease-in-out;
    opacity: 1;
}

.group:hover .group-hover:scale-95 {
    transition-duration: 0.7s;
    transition-timing-function: ease-out;
    transform: scale(1);
}
  