* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lobster', sans-serif;
}
body, html {
    scroll-behavior: smooth;
    color: white;
    height: 100%;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./Assets/Restaurante.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.7);
}
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    width: 80px;
    height: auto;
}
header h1 {
    color: #FF6F00;
    font-size: 24px;
    margin-left: 15px;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
}
.menu-toggle span {
    height: 4px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}
#navbar.active .menu-toggle span:nth-child(1),
#navbar.active .menu-toggle span:nth-child(3) {
    transform: rotate(45deg);
    background-color: #FF6F00;
}
#navbar.active .menu-toggle span:nth-child(2) {
    opacity: 0;
}
#navbar {
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    overflow: hidden;
    animation: slideDown 0.4s ease forwards;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 200px;
}
.navbar-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#navbar li {
    text-align: right;
    padding: 15px 20px;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}
#navbar li:nth-child(1) { animation-delay: 0.1s; }
#navbar li:nth-child(2) { animation-delay: 0.2s; }
#navbar li:nth-child(3) { animation-delay: 0.3s; }
#navbar li:nth-child(4) { animation-delay: 0.4s; }
#navbar li:nth-child(5) { animation-delay: 0.5s; }
#navbar li:nth-child(6) { animation-delay: 0.6s; }
#navbar a {
    color: #FF6F00;
    text-decoration: none;
    font-weight: bold;
    display: block;
    transition: background-color 0.3s ease;
}
#navbar a:hover {
    background-color: rgba(255, 111, 0, 0.2);
}
@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInBg {
    from { background-color: rgba(0, 0, 0, 0.8); }
    to { background-color: rgba(0, 0, 0, 0.95); }
}
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    #navbar {
        position: absolute;
        top: 60px;
        right: 20px;
        display: none;
        flex-direction: column;
        width: 200px;
        background-color: transparent;
        animation: none;
    }
    #navbar.active {
        display: flex;
        animation: fadeInBg 0.3s ease forwards;
        background-color: rgba(0, 0, 0, 0.95);
    }
    #navbar.active li {
        animation: fadeInUp 0.4s ease forwards;
    }
    #navbar.active {
        animation: slideDown 0.4s ease forwards;
    }
}
#inicio {
    margin-top: 100px;
    padding: 100px 20px;
    background-color: rgba(0, 0, 0, 0.3);
}
.inicio-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.texto-intro {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    text-align: left;
}
.texto-intro h2 {
    font-size: 36px;
    color: #FF6F00;
    margin-bottom: 20px;
}
.texto-intro p {
    font-size: 20px;
    color: white;
}
.form-lateral {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.form-container h2 {
    color: #FF6F00;
    margin-bottom: 20px;
    text-align: center;
}
form input,
form textarea,
form button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    color: white;
    font-family: inherit;
}
form button {
    background-color: #FF6F00;
    color: black;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    border: none;
    padding: 12px;
    font-size: 16px;
    transition: background 0.3s ease;
}
form button:hover {
    background-color: #e65b00;
}
#cardapio {
    padding: 100px 20px;
    scroll-margin-top: 80px;
    text-align: center;
}
#cardapio h2 {
    font-size: 36px;
    color: #FF6F00;
    margin-bottom: 10px;
}
.descricao-cardapio {
    font-size: 20px;
    color: white;
    margin-bottom: 40px;
    display: block;
}
.categoria {
    max-width: 800px;
    margin: 40px auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}
.prato {
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}
.prato:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
#promocoes {
    text-align: center;
    padding: 100px 20px;
}
.promo-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-left: 4px solid #FF6F00;
    transition: transform 0.3s ease;
}
.promo-box:hover {
    transform: scale(1.02);
}
.promo-box h3 {
    color: #FF6F00;
    font-size: 24px;
    margin-bottom: 10px;
}
.promo-box p {
    font-size: 18px;
    color: white;
}
#galeria {
    text-align: center;
    padding: 100px 20px;
}
#galeria h2 {
    font-size: 36px;
    color: #FF6F00;
    margin-bottom: 20px;
}
.descricao-especialidades {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
}
.icone-item {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.icone-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 111, 0, 0.4);
}
.icone-item i {
    color: #FF6F00;
    margin-bottom: 15px;
}
.icone-item p {
    color: white;
    font-size: 18px;
    margin-top: 10px;
}
#depoimentos {
    text-align: center;
    padding: 100px 20px;
}
.depoimento {
    max-width: 700px;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-left: 4px solid #FF6F00;
    transition: transform 0.3s ease;
}
.depoimento:hover {
    transform: scale(1.02);
}
.depoimento p {
    font-size: 18px;
    margin-bottom: 10px;
}
.depoimento strong {
    display: block;
    color: #FF6F00;
    margin-top: 10px;
}
#contato {
    text-align: center;
    padding: 100px 20px;
}
#contato h2 {
    font-size: 36px;
    color: #FF6F00;
    margin-bottom: 30px;
}
#contato p {
    font-size: 18px;
    margin: 10px 0;
}
#contato iframe {
    margin-top: 30px;
    border-radius: 10px;
    max-width: 100%;
    height: 300px;
}
footer {
    background-color: black;
    color: #FF6F00;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
.email-link {
    color: #FF6F00;
    text-decoration: none;
}
.email-link:hover {
    text-decoration: underline;
}
.fixed-buttons {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.btn-fixed {
    background-color: #FF6F00;
    color: black;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.btn-fixed:hover {
    transform: scale(1.1);
    background-color: #e65b00;
}
.btn-fixed i {
    pointer-events: none;
}
.btn-email { background-color: #dc3545; }
.btn-instagram { background-color: #e1306c; }
.btn-linkedin { background-color: #0077b5; }
.btn-github { background-color: #333; }
.btn-email:hover,
.btn-instagram:hover,
.btn-linkedin:hover,
.btn-github:hover {
    filter: brightness(1.1);
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    transition: background 0.3s ease;
}
.whatsapp-btn:hover {
    background-color: #128C7E;
}
.whatsapp-button{
    color: #FF6F00;
    text-decoration: none;
}
.whatsapp-button:hover{
    color: #FF6F00;
    text-decoration: underline;
}
