:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #555;
    --accent-primary: #FFA500;
    --accent-secondary: #FFD700;
    --shadow: rgba(0, 0, 0, 0.1);
}

body.dark-theme {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-primary: #FFA500;
    --accent-secondary: #FFD700;
    --shadow: rgba(255, 165, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
#header {
    background-color: var(--bg-primary);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.5s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    transition: color 0.5s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--accent-primary);
    transition: color 0.5s ease;
    font-size: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: color 0.5s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-primary);
}

/* Theme Toggle Button */
.theme-toggle {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.toggle-label {
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.5s ease;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.5s ease;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    transition: color 0.5s ease;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: opacity 0.5s ease;
}

/* Sobre */
.sobre {
    padding: 80px 0;
}

.sobre h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-align: center;
    transition: color 0.5s ease;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-text h3 {
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    transition: color 0.5s ease;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.valor-item {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.5s ease, transform 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-5px);
}

.valor-item i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    transition: color 0.5s ease;
}

.valor-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.5s ease;
}

.valor-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.5s ease;
}

.missao {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-primary);
    transition: background-color 0.5s ease;
}

.sobre-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

@media (max-width: 768px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
}

/* Cardápio */
.cardapio {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.5s ease;
}

.cardapio h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    transition: color 0.5s ease;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, background-color 0.5s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--text-primary);
    transition: color 0.5s ease;
}

.card-desc {
    padding: 0 1rem 0.5rem;
    color: var(--text-secondary);
    transition: color 0.5s ease;
    min-height: 120px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.card-price {
    display: block;
    padding: 0.5rem 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    transition: color 0.5s ease;
    text-align: center;
}

.btn-pedir {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 1.5rem 1rem 1rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
    letter-spacing: 0.3px;
}

.btn-pedir:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.6);
    background: linear-gradient(135deg, #FF8C00, #FFA500);
}

.btn-pedir i {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
}

.depoimentos h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    transition: color 0.5s ease;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: background-color 0.5s ease;
}

.testimonial .stars {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: color 0.5s ease;
}

.testimonial i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.testimonial p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.testimonial strong {
    color: var(--text-primary);
    transition: color 0.5s ease;
}

.review-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-review-secondary {
    background: var(--bg-primary);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-review-secondary:hover {
    background: var(--accent-primary);
    color: #fff;
}

/* Contato */
.contato {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.5s ease;
}

.contato h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    transition: color 0.5s ease;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mapa-placeholder {
    background-color: var(--bg-primary);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: background-color 0.5s ease;
}

.mapa-placeholder i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.mapa-placeholder p {
    color: var(--text-secondary);
    transition: color 0.5s ease;
}

.info-contato {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: color 0.5s ease;
}

.info-item span {
    color: var(--text-secondary);
    transition: color 0.5s ease;
}

/* Footer */
.footer {
    background-color: var(--bg-primary);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--shadow);
    transition: background-color 0.5s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-primary);
}

.footer p {
    color: var(--text-secondary);
    transition: color 0.5s ease;
}

.dev-credit {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.dev-credit a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-credit a:hover {
    color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .logo-img {
        height: 40px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, background-color 0.5s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .sobre h2,
    .cardapio h2,
    .depoimentos h2,
    .contato h2 {
        font-size: 2rem;
    }
}
