
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
  
}
  /* Variables */
:root {
  
--lasalle-blue: #004085;
--lasalle-yellow: #f8ab1c;
--white: #fff;
--black: #000;
--light-gray: #f5f5f5;
}


body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow-x: hidden;

} 

.header-style {
  
   position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
}

.logo {
    margin-left: 20px;
     object-fit: contain;
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
}

.menu-style {
    background: #003c8f;
    padding: 15px 30px;
    border-radius: 15px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-style a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.menu-style a:hover {
  color: var(--lasalle-yellow);
}

.menu-style-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #f8ab1c;
    background: none;
    border: none;
}


/* Carrossel */


/* Carrossel */
.banner {
   /* position: relative; */
    width: 100%;
    /* height: 100vh; */
    
    /* overflow: hidden;  */
}

/* .carousel {
    position: relative;
    width: 100%;
    height: 100%;
} */

/* .slide {
    position: absolute;
    top: 0;
   
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
} */


/* .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    max-height: 100vh;
} */

/* .slide.active {
    opacity: 1;
} */


.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.banner-text h1 {
    font-size: 50px;
}

.banner-text h2 {
    font-size: 40px;
    color: yellow;
}

/* Controles do carrossel */
.controls {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls span {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    
    font-size: 20px;
}


  /* Secondary Nav */

.secondary-nav-new {
background-color: var(--lasalle-blue);
padding: 15px 0;
margin-top: 30px;
width: 700px;
border-radius: 15px;
display: flex;
gap: 30px;
align-items: center;
justify-content: center;
margin: 30px auto; 
}


.secondary-nav-new ul {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}

.secondary-nav-new li a {
color: var(--white);
padding: 5px 10px;

font-weight: bold;
transition: all 0.3s ease;
}

.secondary-nav-new li a:hover {
color: var(--lasalle-yellow);
}

/* Secondary mobile menu button */
.secondary-menu-style-toggle {
display: none;
width: 100%;
background-color: var(--lasalle-blue);
color: var(--white);
padding: 15px;
text-align: center;
border: none;
font-weight: bold;
cursor: pointer;
position: relative;
}

.secondary-menu-style-toggle .arrow {
margin-left: 10px;
transition: transform 0.3s ease;
}

.secondary-menu-style-toggle.active .arrow {
transform: rotate(180deg);
}

/* Secondary mobile menu */
.secondary-mobile-menu-style {
display: none;
background-color: var(--lasalle-blue);
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}

.secondary-mobile-menu-style.active {
max-height: 300px;
padding: 10px 0;
}

.secondary-mobile-menu-style ul {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}

.secondary-mobile-menu-style li a {
display: block;
color: var(--white);
padding: 10px;
font-weight: bold;
text-align: center;
transition: all 0.3s ease;
}

.secondary-mobile-menu-style li a:hover {
color: var(--lasalle-yellow);
}

/* Anniversary Banner */
.anniversary-banner {
background-color: var(--lasalle-yellow);
padding: 15px;
text-align: center;
font-size: 1.1rem;
}
/* News Section */
.news-section {
display: flex;
padding: 30px 20px;
background-color: #f0f8ff;
}


.news-container {
width: 60%;
position: relative;
max-width: 800px; 
margin: auto;
overflow: hidden; 
}
.news-items {
display: flex;
flex-direction: column;
gap: 20px;
}

.news-image {
width: 300px;
height: 300px;
/* object-fit: cover; */
object-fit: contain;
}
.news-text {
padding: 20px;
flex: 1;
}

.carousel-controls {
display: flex;
justify-content: center;
margin-top: 20px;
gap: 10px;
}

.carousel-controls button {
background-color: var(--lasalle-blue);
color: white;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
font-size: 18px;
transition: background-color 0.3s;
}

.carousel-controls button:hover {
background-color: var(--lasalle-yellow);
color: var(--lasalle-blue);
}
.news-carousel {
/* display: flex;
transition: transform 0.5s ease;
overflow: hidden; */

display: flex;
width: 100%;
transition: transform 0.5s ease-in-out;
}
.carousel-item-news {
/* flex: 0 0 100%; */
/* min-width: 100%; */
display: flex;
/* margin-right: 20px; */

flex: 0 0 100%;
text-align: center;
}

.anniversary-logo {
width: 40%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.anniversary-image {
max-width: 300px;
margin-bottom: 20px;
transition: transform 0.5s ease-in-out;
/* animation: slideAnimation 2s infinite linear; */
animation: slideAnimation 2s ease-out forwards;
}
@keyframes slideAnimation {
    0% {
      transform: translateX(100%); 
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translateX(0); /* Entra na tela (esquerda) */
      opacity: 1;
    }
  }

.section {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #003c8f;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    color: #333;
}

.contact-info {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.contact-info i {
    color: #007bff; /* Cor azul */
    margin-right: 8px;
}

#contacto {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #004080;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #003366;
}
.gallery {
    text-align: center;
    padding: 20px;
}

.gallery h1 {
    margin-bottom: 20px;
}

/* .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    max-width: 800px;
    margin: auto;
}


.gallery-item {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
} */


.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    max-width: 800px;
    margin: auto;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    /* object-fit: cover; */
    object-fit: contain;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    margin-top: 5px;
    font-size: 0.9em;
    color: #333;
    text-align: center;
}

/* Estilo do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.modal-img {
    width: 100%;
    height: auto;
}

.modal-caption {
    margin-top: 10px;
    color: white;
    font-size: 1.2em;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}


 /* Location Section */
.location-section {
display: flex;
height: 100%;
}
.map-container {
flex: 1;
height: 50%;
}

.location-info {
background-color: var(--lasalle-blue);
color: white;
padding: 30px;
width: 300px;
display: flex;
flex-direction: column;
}
.location-info h3 {
margin-bottom: 10px;
}

.social-links {
margin-top: auto;
display: flex;
gap: 10px;
}

.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
background-color: white;
color: var(--lasalle-blue);
border-radius: 50%;
font-weight: bold;
}
.fb-link::after {
content: "f";
}

.ig-link::after {
content: "ig";
}
/* Footer */
.footer {
background-color: var(--lasalle-blue);
color: white;
padding: 20px;
text-align: center;
}

/* Responsividade */
@media (max-width: 991px) {
  .location-info {
    width: 200px;
    height: auto;
}  
.location-info p{
    font-size: 11px;
}
/* .news-section {
flex-direction: column;
} */

/* .footer {
    width: 100%;
    margin-bottom: 10px;
    } */



 .anniversary-logo {
/* width: 100%; */
width: 40%;
}
.anniversary-logo {
margin-top: -50px;
}
.anniversary-logo img{
    width: 150px;
    height: 250px;
}


/* .news-image {
width: 150px;
height: 150px;
} */

}

@media (max-width: 768px) {
  .banner-text h1 {
        font-size: 15px;
    }
    .banner-text h2 {
        font-size: 12px;
    }
    .anniversary-logo {
        margin-top: -20px;
        }
    .logo {
        top: 0px ; 
        position: absolute;
        /* position: relative; */
        display: flex;
        margin-left: -10px;
    }

    .logo img {
        width: 80px;
    }
    .menu-style {
        /* display: none;  incial*/
        /* flex-direction: column;  inicial */
        position: absolute;
        top: 10px ; /* era 60   */
        right: 22px;
        background: #003c8f;
        font-size: 10px;
        /* padding: 15px;  inicia
        */ 
       flex-direction: row;       
       justify-content: center;
       display: flex;
       gap: 5px;
        overflow-x: auto;           
        white-space: nowrap;  
        padding: 1px ;
        margin-left: 1px !important;
     

        border-radius: 10px;
    }
    .menu-style a {
        padding: 5px 6px;
        /* padding: 4px 6px; */
        font-size: 15px;
    }
    .menu-style.show {
        display: flex;
    }
    .menu-style-toggle {
        display: block;
    }
    /* .location-section {
    flex-direction: column;
    height: 180px;
  } */
  .map-container iframe {
  height: 250px;
    flex: 1;
    font-size: small;
}
.anniversary-banner {
font-size: 0.9rem;
padding: 10px;
}
/* Secondary nav responsive styles */
/* .secondary-nav {
se volta descoment
  display: none;
} */

.secondary-nav-new { /*  se voltar remove a class aqui */
    background-color: var(--lasalle-blue);
    padding: 1px 1px;
    margin-top: 0px;
    /* width: 100%; */
    width: 350px;
    position: relative;
    border-radius: 15px;
    display: flex;
    gap: 1px;
    align-items: center;
    justify-content: center;
    margin: 2px ; 
    margin-left: 20px;
    margin-right: 5px;
  

    }

    
.secondary-nav-new ul {
    flex-direction: row;       
    justify-content: center;
    display: flex;
    gap: 1px;
    overflow-x: auto;           
    white-space: nowrap;  
    padding: 1px 0;
    text-transform: none;
    font-size: 0.7rem; 
   
    }

    .secondary-nav-new li a {
        color: var(--white);
        padding: 3px 3px;
         /* padding: 4px 6px; */
         font-size: 10px;
        }
    


    
.secondary-menu-style-toggle {
display: block;
}
.secondary-mobile-menu-style {
display: block;
}
/* .carousel-item-news{
flex-direction: column;
} */

   .carousel {
        height: 250px; /* altura menor para celular */
    }

    .slide {
        height: 250px; /* igual à altura do carousel */
    }
    .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;  
}
      .controls button {
        padding: 6px 7px;
        font-size: 12px;
    }
    .banner {
    /* position: relative;
    width: 100%; */
    height: 250px; 
    /* overflow: hidden; */
    margin-bottom: -65px;
}

.news-carousel {
    display: block;
    /* margin-top: 30px; */
    transform: none !important; 
  }
.carousel-item-news {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: -32px;
  }

.news-image {
    /* width: 40%; */
    width: 90px;
    height: 90px;
    margin-left: -5px;
    object-fit: contain;
  }
.news-text {
    text-align: left;
    margin-top: 0;
    flex: 1;
    font-size: 10px;
  }
.carousel-controls {
    display: none; 
  }
}
@media (max-width: 480px) {
    .secondary-nav-new {
        padding: 5px 5px;
        display: flex;
        margin-top: 95px;
        width: 350px;
        border-radius: 15px;
        display: flex;
        gap: 5px;
       align-items: center;
       justify-content: center;
     
      margin: 110px auto;
      margin-bottom: 10px;
        }

     
    .news-text {
        text-align: left;
        margin-top: 1px;
        flex: 1;
        font-size: 9px;
      }
    .carousel {
        height: 180px;
    }

    .slide {
        height: 180px;
    }
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;  
    }

    .carousel-item-news {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: -40px;
      }
      .news-container{
        width: 60%;
        margin-top: -8px;
        }
      .anniversary-logo {
        margin-top: -17px;
        }
        
   
}
@media (min-width: 700px) and (max-width: 850px) {
    .carousel-item-news {
        display: flex;
        flex-direction: row;
        align-items: center;
       
        margin-bottom: 5px;
      }
      .news-container{
        width: 60%;
        margin-top: -9px;
        }
      .anniversary-logo {
        margin-top: -17px;
        }
        .secondary-nav-new {
            padding: 15px 0;
            margin-top: 100px;
            width: 600px;
            border-radius: 15px;
            gap: 30px;
            align-items: center;
            justify-content: center;
            margin: 70px ; 
            margin-bottom: 10px;
            }
            .secondary-nav-new li a {
                padding: 5px 6px;
                 /* padding: 4px 6px; */
                 font-size: 10px;
                }
}

@media (max-width: 400px) {
    .secondary-nav-new {
        /* padding: 5px 5px; */
        display: flex;
        margin-top: 79px;
        width: 350px;
        border-radius: 15px;
        display: flex;
         gap: 30px;
        align-items: center;
        justify-content: center;
      
       /* margin: 60px auto; */
       margin-bottom: 50px;
    }
    .anniversary-banner  {
        margin-top: -46px;
    }
    .anniversary-logo {
        margin-top: -17px;
      margin-left: auto;
      margin-right: auto;
      display: block;
      position: relative;
    }
    .carousel-item-news {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: -45px;
      }

      .news-text {
        text-align: left;
        margin-top: 1px;
        flex: 1;
        font-size: 7px;
      }
      .news-container{
        width: 60%;
        margin-top: -33px;
        
        }

        .anniversary-logo img{
            width: 130px;
            height: 230px;
        }
  }
