@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #101010;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  color: #fff;
  padding: 0; 
  margin: 0;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 17vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #101010;
  padding: 0 5vw;
  z-index: 1000;
}

.imgLogo {
  width: 7vw;
  min-width: 80px;
  margin-top: 45px;
}

.navbar {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar li.nav-item {
  margin: 0 2vw;
}

.navbar li.nav-item a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  padding-bottom: 5px;
}

.navbar li.nav-item a:hover{
  color: #ff751f;
  transition: 1s;
}

#eventos {
    background-color: #101010; 
            display: flex;
            justify-content: center;
            align-items: center;
           
            padding: 80px 0;
            flex-direction: column;
            overflow: hidden;
             scroll-margin-top: 17vh;
    padding-top: 5vh;
}

.Carrosel {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 60vh; 
    min-height: 400px; 
    margin: 0 auto 50px auto;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.Carrosel1 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease-in-out;
    left: 0;
}

.slide {
    position: absolute;
    width: 300px; 
    height: 400px; 
    border-radius: 20px;
    overflow: hidden;
    background-color: #333;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7); 
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, filter 0.6s ease-in-out, z-index 0s 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    text-align: left;
    transform-origin: center center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.5);
    z-index: 0;
}

.slide.active-center {
    opacity: 1;
    transform: translateX(0) scale(1.0);
    z-index: 5;
    filter: brightness(1);
    pointer-events: auto;
}

.slide.active-left-1, .slide.active-right-1 {
    opacity: 0.7;
    filter: brightness(0.7);
    z-index: 4;
    pointer-events: auto;
}

.slide.active-left-2, .slide.active-right-2 {
    opacity: 0.4;
    filter: brightness(0.5);
    z-index: 3;
    pointer-events: auto;
}

.slide.active-left-3, .slide.active-right-3 {
    opacity: 0.2;
    filter: brightness(0.3);
    z-index: 2;
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.8);
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    border-radius: 0 0 20px 20px;
    box-sizing: border-box;
    z-index: 2;
}

.slide-tag {
    background-color: #ff751f;
    padding: 6px 12px; 
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
}

.slide-info h3 {
    font-size: 1.5em; 
    font-weight: 700;
    margin: 5px 0;
    line-height: 1.3;
}

.slide-info p {
    font-size: 1em; 
    font-weight: 300;
    opacity: 0.8;
}

.slide-info p i {
    margin-right: 8px; 
}

        
.proximo,
.anterior {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border: 1px solid #ff745f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    background-color: rgba(39, 39, 39, 0.638);
    transition: background-color 0.2s;
}

.proximo:hover,
.anterior:hover {
    background: #ff751f55;
    border-color: #ff751f;
    transform: translateY(-50%) scale(1.1);
}
        
.proximo::before {
    content: '\f054'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    font-size: 1.2em;
}

.anterior {
    left: 0;
    margin-left: 30px;
}
.anterior::before {
    content: '\f053'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    font-size: 1.2em;
}
.proximo {
    right: 0;
    margin-right: 30px;
}
        
       
.bolinha {
    position: absolute; 
    bottom: -50px; 
    display: flex;
    gap: 12px;
    z-index: 10;
}

.bolinha-item {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, border-color 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.bolinha-item.ativo {
    background: #ff751f;
    transform: scale(1.3);
    border-color: #c75d1b;
}

@media (max-width: 1200px) {
    .slide {
        width: 280px;
        height: 380px;
    }
    .proximo, .anterior {
        margin: 0 15px;
    }
}

@media (max-width: 900px) {
    .Carrosel {
        height: 50vh;
        min-height: 350px;
    }
    .slide {
        width: 250px;
        height: 350px;
    }
    .slide-info h3 {
        font-size: 1.4em;
    }
    .slide-info p {
        font-size: 0.9em;
    }
    .proximo, .anterior {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }
           
}

@media (max-width: 600px) {
    #eventos {
        padding: 60px 0;
    }
    .Carrosel {
        height: 40vh;
        min-height: 250px;
    }
    .slide {
        width: 200px;
        height: 300px;
    }
    .slide-info {
        padding: 15px 20px;
    }
    .slide-tag {
        font-size: 0.6em;
    }
    .slide-info h3 {
        font-size: 1.1em;
    }
    .slide-info p {
        font-size: 0.8em;
    }
    .proximo, .anterior {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
    .bolinha {
        gap: 8px;
        bottom: -40px;
    }
    .bolinha-item {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 400px) {
    .slide {
        width: 180px;
        height: 250px;
    }
    .slide-info h3 {
        font-size: 1em;
    }
    .proximo, .anterior {
        width: 35px;
        height: 35px;
        margin: 0 2px;
    }
}

.header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    padding: 20px 8vw; 
    background: #000; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 100; 
}

.navbar a { 
    font-size: 1.15rem; 
    color: #fff; 
    text-decoration: none; 
    font-weight: 500; 
    margin-left: 40px; 
    transition: .3s; 
}
.navbar a:hover, .navbar a.active { color: #ff751f; }
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
}
.menu-toggle i { 
    font-size: 2rem; 
    color: #fff; 
    transition: 0.3s; 
}
.menu-toggle i.icon-fechar { display: none; }
.section-title { 
    text-align: center; 
    margin-bottom: 25px; 
    font-size: 2.5rem; 
}
main { padding-top: 100px; } 

ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

ul li .icon {
    width: 70px;
    height: 70px;
}

#cardapio {
    font-family: 'Inter', sans-serif;
    color: #f7f7f7;
    padding: 3vh 0 3vh 0; 
    scroll-margin-top: 10vh; 
    width: 100%;
    margin: 0; 
}

.cardapio-grid-container {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem; 
    margin: 5rem auto;
    max-width: 1150px;
    padding: 0 15px; 
}

@media (min-width: 1024px) {
    .cardapio-grid-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

.card-item {
    display: flex;
    flex-direction: column;
    margin: 0; 
    background-color: #2c2c2c; 
    border-radius: 0.5rem;
    padding: 0.5rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .card-item {
        width: 70%;        
        margin: 0 auto;    
        padding: 0.4rem;   
    }
}

.card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(160, 148, 140, 0.4); 
}

.item-image {
    width: 100%;
    height: auto;      
    border-radius: 8px; 
    margin-bottom: 15px;
    overflow: hidden;
}

.item-image img {
    width: 100%;         
    height: auto;        
    object-fit: contain; 
    display: block;      
    transition: transform 0.5s ease;
}
.card-item:hover .item-image img {
    transform: scale(1.05); 
}

.nomeporcao {
    display: flex;
    justify-content: center; 
    align-items: center;  
    text-align: center;
    font-size: 1rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-shadow: 0 0 3px #000;
    line-height: 1.2;
    margin: 0 0 5px 0;
}

.ingredientesporcao {
    font-size: 1rem; 
    color: #cccccc;
    line-height: 1.4; 
    margin: 0 0 10px 0;
    text-align: center;
    max-width: 100%;
    align-items: center;
    display: flex;
    justify-content: center; 
}

.precoporcao {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1;
    margin: 1;
    align-items: center;
    display: flex;
    justify-content: center; 
}

.menu-item-title {
    font-size: 1.6rem; 
    font-weight: 900;
    color: #fff; 
    text-shadow: 0 0 4px #ff751f; 
    margin-bottom: 5px;
    line-height: 1.2;
}

.menu-item-description {
    font-size: 1rem; 
    color: #b0b0b0; 
    margin-bottom: 15px;
    flex-grow: 1; 
    padding: 0 5px; 
}

.menu-item-price {
    font-size: 1.7rem; 
    font-weight: 900;
    color: #ff751f; 
    background-color:#101010; 
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-block;
}

.text-glow {
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.8), 0 0 15px rgba(255, 140, 0, 0.6);
}


.subtitulo-menu-bebidas {
    font-size: 0.9rem;
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 25px; 
    padding: 0 10px;
}

@media (max-width: 768px) {
    .subtitulo-menu-bebidas {
        font-size: 2.5rem;   
    }
}

.secao {
    width: 100%;
    height: auto; 
    position: relative;
    background-color: #101010;
    border-radius: 0; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #ffffff; 
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.menu {
    width: 100%;
    background-color: #101010; 
    z-index: 10;
    padding: 1rem 0; 
    flex-shrink: 0;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    overflow-x: hidden;
}

#lista-categorias {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap; 
    padding: 1rem;
}

.botaocategoria {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    border-radius: 998px;
    border: 2px solid #181717;
    background: rgba(54, 54, 54, 0.4);
    cursor: pointer;
    white-space: nowrap;
}

.botaocategoria:hover {
    color: #ff751f;
    border-color: #ff751f;
}
.botaocategoria.ativo {
    color: #000000;
    background-color: #ff751f; 
    border-color: #ff751f;
    box-shadow: 0 0 15px rgba(255, 117, 31, 0.6);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .botaocategoria {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}


.palcovisual {
    position: relative;
    flex-grow: 1;
    padding: 10px 5vw; 
    display: flex; 
    justify-content: center;
    align-items: center;
}

.bebidas {
    position: relative; 
    z-index: 1;
    width: 100%;
    height: 325px;
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: flex-end; 
    gap: 3rem; 
    padding-bottom: 0;
}

.iconenavegacao {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border: 1px solid #ff745f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    background-color: rgba(39, 39, 39, 0.638);
    transition: background-color 0.2s;
}
.iconenavegacao.esquerda { left: 4%; }
.iconenavegacao.direita { right: 4%; }
.iconesimbolo {
    color: #ff745f;
    font-size: 1.5rem;
}

.containerbebida {
    display: flex;
    flex-direction: row;  
    gap: 2.5px;             
    margin: 0;   
    padding: 0;
}

.estilocopo {
    display: block;
    width: auto;         
    height: auto;          
    margin: 0;
    padding: 0;
}

.estilocopo img {
    display: block;
    width: 100%;           
    height:  295px;
}

.detalhesbebida {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    width: 300px;
    padding: 0;
    text-align: left;
}

.nomebebida {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0 0 5px 0;
}

.ingredientesbebida {
    font-size: 1rem; 
    color: #cccccc;
    line-height: 1.4; 
    margin: 0 0 10px 0;
    max-width: 100%; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.precobebida {
    font-size: 1rem;
    font-weight: 90;
    color: #ffffff;
    line-height: 1;
    margin: 0;
}

.moeda { 
    color: #ffffff; 
    font-weight: 800; 
}

.tagbebida { 
    display: none;
}

@media (max-width: 768px) {

    .bebidas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem; 
        padding: 1rem 0; 
    }

    .estilocopo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .estilocopo img {
        width: 60vw;      
        max-width: 200px;  
        height: auto;      
        object-fit: contain; 
        display: block;
    }
    
    .containerbebida {
        width: 100%;
        max-width: 385px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .detalhesbebida,
    .ingredientesbebida,
    .precobebida,
    .nomebebida {
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .nomebebida {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }
}

#servicos {
    background-color: #ff751f;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

#servicos ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    width: 100%;
    text-align: center;
}

#servicos li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

#servicos .icone-lista {
    width: 75px;
    height: auto;
    margin-right: 15px;
    vertical-align: middle;
}

#servicos li i {
    font-size: 48px;
    margin-right: 15px;
}

#sobre, #cardapio, #parcerias, #localizacao {
  min-height: 100vh
}

.icon-fechar {
  display: none;
  color: white;
  font-size: 30px;
}

.icon-abrir {
  color: white;
  font-size: 30px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}


@media (max-width: 900px) {
    .navbar {
        display: none;
        flex-direction: column;
        background-color: #101010e8;
        width: 100%;
        position: absolute;
        top: 17vh;
        left: 0;
        padding: 20px 0;
        gap: 30px;
        text-align: center;
    }

    .navbar.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .imgLogo {
        width: 20vw;
    }

    #eventos {
        height: auto;
    }

    #servicos i {
        font-size: 8vw;
    }

    #servicos ul {
        flex-wrap: wrap;
        gap: 30px;
    }

    #servicos li {
        width: 45%;
    }
}

@media (min-width: 901px) {
    .menu-toggle {
        display: none;
    }
    
}


@media (max-width: 600px){
    #servicos ul {
        flex-direction: column;
        gap: 40px;
    }

    #servicos li {
        width: 100%;
    }

    #servicos li i {
        font-size: 40px;
    }
}


#sobre{
    scroll-margin-top: 17vh;
    padding-top: 5vh;
}

#sobre .tituloSobre{
    font-weight: 600;
    text-align: center;
}


#sobre .informacoesSobre ul{
   display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

#sobre .informacoesSobre li {
  display: flex;
    gap: 50px;
    flex-wrap: wrap;
   align-items: center;
   margin-bottom: 20px;
}

#sobre .informacoesSobre ul li p.descSobreLobos{
    max-width: 500px;
    line-height: 1.6;
    font-size: 1.5em;
    text-align: justify;
    color: #c2bdb8;
}

#sobre .informacoesSobre ul li p.descSobreLobos span{
    color: #fff;
}

#sobre .informacoesSobre li img {
  width: 400px;
  border-radius: 10px;

}

@media (max-width: 900px) {
  #sobre .informacoesSobre li {
    flex-direction: column;
    text-align: center;
    
  }

  #sobre .informacoesSobre ul li p.descSobreLobos{
    margin: 20px;
}

  #sobre .informacoesSobre li img {
    width: 80%;
  }
    }

#parcerias{
   scroll-margin-top: 17vh;
  padding-top: 5vh;
}

#parcerias .tituloParceria{
   font-weight: 600;
    text-align: center
}

#parcerias .informacoesParcerias ul{
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

#parcerias .informacoesParcerias li{
  display: flex;
    gap: 50px;
    flex-wrap: wrap;
   align-items: center;
   margin-bottom: 20px;
}


#parcerias .informacoesParcerias ul li p.descParceriaLobos{
    max-width: 500px;
    line-height: 1.6;
    font-size: 1.5em;
    text-align: justify;
    color: #c2bdb8;
}

#parcerias .informacoesParcerias ul li p.descParceriaLobos span{
    color: #fff;
}

#parcerias .informacoesParcerias li img {
  width: 400px;
  border-radius: 10px;

}

@media (max-width: 900px) {
  #parcerias .informacoesParcerias li {
    flex-direction: column;
    text-align: center;
    
  }

  #parcerias .informacoesParcerias ul li p.descParceriaLobos{
    margin: 20px;
}

  #parcerias .informacoesParcerias li img {
    width: 80%;
  }
    }

#localizacao{
    scroll-margin-top: 17vh;
    padding-top: 5vh;
}

#localizacao .tituloLoc{
  font-weight: 600;
    text-align: center
}

#localizacao p.descLoc{
  
     max-width: 100%;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 20px;
    text-align: justify;
    color: #c2bdb8;
    
}

#localizacao p.descLoc span{
  color: #ff751f;
  font-weight: 600;
}


.localizacao-container {
    width: 100%;
    max-width: 1000px; 
    margin: auto;
    padding: 0 20px;
}
.mapa {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}


.mapa iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 15px;
  
}

@media (max-width: 768px) {
    .descLoc {
        font-size: 1.05em;
        line-height: 1.6;
    }

    .mapa iframe {
        height: 300px;
    }
}


@media (max-width: 480px) {
    .descLoc {
        font-size: 0.95em;
        line-height: 1.5;
    }

    .mapa iframe {
        height: 250px;
        border-radius: 8px;
    }
}

#contato{
    scroll-margin-top: 17vh;
    padding-top: 5vh;
}

#contato .container-contato{
   display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 0px 30vh 0px 30vh;
}

#contato .container-contato .chamadaContato{
  display: flex;
  flex-direction: column;
   width: 40%;
}

#contato .container-contato .chamadaContato p.tituloContato{
  color: #ff751f;
  font-weight: 600;
  font-size: 1.4rem;
}

#contato .container-contato .chamadaContato p.subtituloContato{
  font-weight: 600;
  margin-bottom: 22px;
  font-size: 1.2rem;
}

#contato .container-contato .chamadaContato a{
  color: #ff751f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid #ff751f;
  align-self: flex-start;
  padding: 10px 25px;
}

#contato .container-contato .chamadaContato a:hover{
  background-color: #ff751fc2;
  color: #fff;
  transition: 1s;
}

.galeria {
    width: 70%;
    margin: 0 auto;
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
}

.galeria img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform .3s;
}

.galeria img:hover {
    transform: scale(1.05);
}

.lightbox {
   display: none;     
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 95vw;     
    max-height: 95vh;    
    width: auto;        
    height: auto;       
    object-fit: contain;
    border-radius: 10px;
}

.fechar {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 992px) {

    #contato .container-contato {
        flex-direction: column; 
        align-items: center;
        margin: 0 5vw;
        text-align: center;
    }

    #contato .container-contato .chamadaContato {
        width: 100%;
        align-items: center;
    }

    #contato .container-contato .chamadaContato a {
        align-self: center;
    }

    .galeria {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
        padding: 10px;
    }
}

@media (max-width: 768px) {  
    .secao {
        padding-top: 50px;
        padding-bottom: 50px;
        min-height: auto;
        height: auto;
    }

    .bebidas {
        position: static;
        transform: none;
        height: auto;
        flex-direction: column; 
        align-items: center;
        gap: 30px;
        padding-bottom: 20px;
    }

    .containerbebida:nth-child(2) {
        display: none; 
    }

    .estilocopo {
        height: 250px;
        width: 150px; 
    }
    
    .detalhesbebida {
        width: 90%; 
        padding: 0 10px;
        text-align: center;
    }
    

    .descLoc {
        font-size: 1.05em;
        line-height: 1.6;
    }

    .mapa iframe {
        height: 300px;
    }
    
    .galeria {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 500px;
    }

    .galeria img {
        height: 150px;
    }
}

@media (max-width: 480px) {

    .galeria {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .galeria img {
        height: 200px;
    }

    .fechar {
        font-size: 40px;
        top: 15px;
        right: 20px;
    }
}

footer {
    background: #000;
    color: #fff;
    width: 100%;
    padding-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 8vw;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col.logo img {
    width: 130px;
}

.footer-col.links a {
    color: #fff;
    text-decoration: none;
    margin: 4px 0;
}

.footer-col.links a:hover {
    color: #ff751f;
}

.footer-col.horarios h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-col.contato p {
    margin-bottom: 6px;
    max-width: 250px;
}

.social {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.social a{
  color: #fff;
}

.social  i {
    font-size: 1.5rem;
    cursor: pointer;
    transition: .3s;
    color: #fff;
}

.social i:hover {
    color: #ff751f;
}

.footer-copy {
    background: #ff751f;
    text-align: center;
    padding: 12px;
    color: #111;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col.logo img {
        margin-bottom: 20px;
    }

    .social {
        justify-content: center;
    }
}




