body{
    font-family: 'Sora', sans-serif;
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #06121e;
}

button{
    font-family: 'Sora', sans-serif;
    cursor: pointer;
}

svg{
    width: 100%;
}

img{
    width: 100%;
}
a{
    cursor: pointer;
    text-decoration: none;
}

header {
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

i {
    color: #fff;
}

.header-icons {
    display: flex;
    gap: 14px;
}

.header-icons a:hover i {
    color: #d34040; 
    animation: translateY 0.8s infinite alternate;
}

@keyframes translateY {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-8px) scale(1.1);
    }
}

.header-button {
    align-items: center;
    border: 1px solid #fff; 
    padding: 8px 24px;
    border-radius: 4px;
    color: #fff; 
    background-color: transparent;
    transition: background-color 0.8s;
}

.header-button:hover {
    border: 1px solid #d34040;
    background-color: #d34040; 
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    margin-left: 10px;
    width: 180px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .header-content {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header-content i {
        margin-top: 16px;
        font-size: 34px;
    }

    .header-logo img {
        width: 160px;
        margin-top: 46px;
    }

    .header-button {
        display: none;
    }
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 8px;
}

/* HOME */
.bg-home {
    position: relative;
}

.bg-home::before {
    content: '';
    display: block;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url("i6.jpg");
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    opacity: 0.9;
}


.hero {
    color: #fff; 
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.hero h1 {
    text-align: center;
    line-height: 150%;
    max-width: 940px;
    font-size: 48px;
}

.button-contact {
    padding: 14px 28px;
    color: #fff; 
    background-color: #d94140; 
    border: 0;
    font-size: 18px;
    font-weight: 600;
    margin: 14px 0;
}

.button-contact:hover {
    animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.07);
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 34px;
        padding: 0 14px;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
}

.about{
    background-color: #06121e;
    overflow: hidden;
    color: #fff;

}
.about-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 34px 14px 64px 14px;


    img{
        max-width: 570px;
    }
}

.about-content div{
    flex: 1;
}

.about-description{
    h2{
        font-size: 38px;
        margin-bottom: 24px;
    }
    p{
        margin-bottom: 14px;
        line-height: 150%;
    }
}

@media screen and (max-width: 768px) {
    .about-content{
        flex-direction: column;
    }
    
}



/*---------------------------------------------------


/* Estilo para o Cardápio: Churrasco e Comida de Boteco */
.menu {
    max-width: 1150px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  

.menu h1{
    text-align: center;
    margin-bottom: 20px;
    font-size: 55px;
    color: #333;
}

  .menu h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #333;
  }
  
  .menu-section {
    margin-bottom: 20px;
  }
  
  .menu-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d94140; 
    border-bottom: 2px solid #d94140;
    padding-bottom: 5px;
  }
  
  .menu-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .menu-section ul li {
    font-size: 18px;
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .menu-section ul li:last-child {
    border-bottom: none;
  }
  

  @media screen and (max-width: 768px) {
    .menu {
      padding: 10px;
      max-width: 500px;
    }
  
    .menu h2 {
      font-size: 28px;
    }
  
    .menu-section h3 {
      font-size: 20px;
    }
  
    .menu-section ul li {
      font-size: 16px;
    }
  }
  


  .footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 54px 0;
    gap: 24px;
    color: #fff;
  }

  .footer-icons{
    display: flex;
    gap: 8px;
    color: #fff;
  }
  

  .btn-Whatsapp{
    position: fixed;
    bottom: 14px;
    right: 24px;
    z-index: 99;


    img{
     max-width: 74px;
     transition: transform 0.4s;

    }

    img:hover{
        transform: scale(1.1);
    }


  }

  .btn-Whatsapp .text{
    visibility: hidden;
    position: absolute;
    width: 120px;
    top: 8px;
    left: -144px;
    padding: 4px;
    border-radius: 8px;
    text-align: center;
    background-color: #06121e;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .btn-Whatsapp:hover .text{
    visibility: visible;
    opacity: 1;

  }

  @media screen and (max-width: 768px) {
    .btn-Whatsapp{
        img{
            max-width: 64px;
        }
    }
    
  }
