/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vermelho-escuro: #C62828;
    --amarelo-mostarda: #FFD54F;
    --marrom: #4E342E;
    --marrom-claro: #795548;
    --branco: #FAFAFA;
    --preto: #121212;
    --cinza: #1E1E1E;
    --cinza-escuro: #BDBDBD;
    --card-bg: #252525;
    --text-primary: #E0E0E0;
    --text-secondary: #9E9E9E;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--preto);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--vermelho-escuro);
    color: var(--branco);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #E53935;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--amarelo-mostarda);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--vermelho-escuro);
    margin: 15px auto 30px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0);
   
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(30, 30, 30, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amarelo-mostarda);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vermelho-escuro);
    transition: width 0.3s ease;
}

.nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--amarelo-mostarda);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    color: var(--branco);
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.767);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease;
}

.hero .btn {
    animation: fadeInUp 1s ease;
}

/* Estilos para o Hero aprimorado */
.hero-title-container {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--amarelo-mostarda);
    text-stroke: 2px var(--amarelo-mostarda);
}

.highlight-word {
    color: var(--amarelo-mostarda);
    display: block;
    font-size: 6.5rem;
    margin-top: -1.5rem;
    position: relative;
    animation: flame 3s ease-in-out infinite alternate;
}

.sauce-drip {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 50"><path d="M10,10 C50,40 150,40 190,10" fill="none" stroke="%23C62828" stroke-width="8" stroke-linecap="round"/></svg>') no-repeat;
    z-index: 1;
    opacity: 0.8;
}

.hero-text {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.text-rotate {
    display: inline-block;
    min-height: 2.5rem;
}

.animate-pop-in {
    animation: popIn 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 2;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(198, 40, 40, 0.5);
}

.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(198, 40, 40, 0.8);
}

.btn-glow i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-glow:hover i {
    transform: rotate(15deg);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.burger-icon, .fries-icon {
    position: absolute;
    opacity: 0.2;
    background-size: contain;
    background-repeat: no-repeat;
}

.burger-icon {
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,30 L90,30 L90,40 L10,40 Z M10,50 L90,50 L90,60 L10,60 Z" fill="%23FFD54F"/></svg>');
    top: 20%;
    right: 10%;
}

.fries-icon {
    width: 80px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="10" height="80" fill="%23FFD54F"/><rect x="30" y="10" width="10" height="80" fill="%23FFD54F"/><rect x="50" y="10" width="10" height="80" fill="%23FFD54F"/><rect x="70" y="10" width="10" height="80" fill="%23FFD54F"/></svg>');
    bottom: 20%;
    left: 10%;
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 1s;
}

/* Animações */
@keyframes flame {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 213, 79, 0.8), 0 0 20px rgba(198, 40, 40, 0.6);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 213, 79, 0.9), 0 0 30px rgba(198, 40, 40, 0.8), 0 0 40px rgba(255, 100, 0, 0.6);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .highlight-word {
        font-size: 4.5rem;
    }
    
    .hero-text {
        font-size: 1.4rem;
    }
    
    .sauce-drip {
        width: 180px;
        top: 65%;
    }
    
    .burger-icon, .fries-icon {
        display: none;
    }
}

/* Cardápio */
.cardapio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cardapio-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cardapio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(198, 40, 40, 0.2);
}

.cardapio-img {
    height: 200px;
    overflow: hidden;
}

.cardapio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(1.05);
}

.cardapio-item:hover .cardapio-img img {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.cardapio-content {
    padding: 20px;
}

.cardapio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--amarelo-mostarda);
}

.cardapio-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--amarelo-mostarda);
}

/* Horário */
.horario-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.horario-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.horario-item h3 {
    font-size: 1.5rem;
    color: var(--amarelo-mostarda);
    margin-bottom: 20px;
}

.horario-item p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* Localização */
.localizacao-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.mapa {
    flex: 2;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    filter: grayscale(30%) brightness(0.8);
    border: 2px solid var(--marrom);
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.endereco {
    flex: 1;
    min-width: 250px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.endereco h3 {
    font-size: 1.5rem;
    color: var(--amarelo-mostarda);
    margin-bottom: 20px;
}

.endereco p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.redes-sociais {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.redes-sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--vermelho-escuro);
    color: var(--branco);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.redes-sociais a:hover {
    background-color: var(--amarelo-mostarda);
    color: var(--preto);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--branco);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amarelo-mostarda);
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--amarelo-mostarda);
}

.footer-contato {
    flex: 1;
    min-width: 250px;
}

.footer-contato p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contato i {
    margin-right: 10px;
    color: var(--amarelo-mostarda);
}

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--vermelho-escuro);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--marrom);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--vermelho-escuro);
    color: var(--amarelo-mostarda);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--card-bg);
        flex-direction: column;
        padding: 30px;
        transition: all 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
    }
    
    .nav ul li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 80px;
        right: 20px;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        left: 20px;
    }
}