/* 1. CONFIGURAÇÕES GERAIS */
:root {
  --purple-main: #6A0dad;
  --purple-dark: #4a0072;
  --green-neon: #aeea00;
  --text-dark: #333;
  --bg-light: #f4f7f6;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: #fff; line-height: 1.6; }
h1, h2, h3, .logo { font-family: 'Fredoka One', cursive; }
html { scroll-behavior: smooth; }

/* Utilitários */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.section-title { text-align: center; font-size: 2.8rem; color: var(--purple-main); margin-bottom: 40px; }
.section-subtitle { text-align: center; margin-top: -30px; margin-bottom: 50px; color: #666; }

/* 2. NAVBAR */
.navbar { background: var(--purple-main); padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: #fff; font-size: 1.8rem; }
.logo span { color: var(--green-neon); }
.nav-menu { display: flex; list-style: none; gap: 20px; align-items: center; }
.nav-menu a { color: #fff; text-decoration: none; font-weight: 600; transition: 0.3s; }
.nav-menu a:hover { color: var(--green-neon); }
.btn-nav { background: var(--green-neon); color: var(--purple-dark) !important; padding: 8px 20px; border-radius: 50px; }

/* 3. HERO SECTION */
.hero { height: 80vh; background: url('../Imagens/baixados.jpg') center/cover; margin-top: 60px; }
.hero-overlay { background: rgba(74, 0, 114, 0.6); height: 100%; display: flex; align-items: center; text-align: center; }
.hero-content { color: white; width: 100%; }
.hero-content h2 { font-size: 4rem; margin-bottom: 15px; }
.btn-primary { display: inline-block; background: var(--green-neon); color: var(--purple-dark); padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.2rem; transition: 0.3s; }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

/* 4. MENU DE TAMANHOS (Ajustado) */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.menu-card { background: white; padding: 40px 20px; border-radius: 20px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #eee; position: relative; }
.menu-card:hover { transform: translateY(-10px); border-color: var(--purple-main); }
.icon-box { font-size: 3rem; color: var(--purple-main); margin-bottom: 15px; }
.price { display: block; font-size: 2rem; color: var(--purple-dark); font-weight: bold; margin-top: 10px; }
.menu-card.popular { border: 3px solid var(--purple-main); transform: scale(1.05); }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--purple-main); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }

/* 5. LOCALIZAÇÃO */
.location-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; margin-top: 20px; }
.location-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: white; padding: 20px; border-radius: 15px; text-align: center; box-shadow: 0 5px 10px rgba(0,0,0,0.05); }
.info-card i { font-size: 2rem; color: var(--purple-main); margin-bottom: 10px; }
.map-container { border-radius: 15px; overflow: hidden; border: 5px solid white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* 6. REDES SOCIAIS (GRANDES) */
footer { background: var(--purple-dark); color: white; padding: 60px 0 20px; text-align: center; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--green-neon); }
.social-links { display: flex; justify-content: center; gap: 25px; }
.social-links a { 
    display: flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; /* Tamanho do círculo */
    background: rgba(255,255,255,0.1); 
    color: white; border-radius: 50%; 
    font-size: 2.5rem; /* Tamanho do ícone */
    transition: 0.4s; text-decoration: none;
}
.social-links a:hover { background: var(--green-neon); color: var(--purple-dark); transform: scale(1.2) rotate(10deg); }
.copy-right { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.8rem; opacity: 0.6; }

/* 7. RESPONSIVIDADE */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.bar { width: 25px; height: 3px; background: white; }

@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 60px; left: 0; width: 100%; background: var(--purple-main); flex-direction: column; padding: 20px; }
    .nav-menu.active { display: flex; }
    .hamburger { display: flex; }
    .location-wrapper { grid-template-columns: 1fr; }
    .hero-content h2 { font-size: 2.5rem; }
    .social-links a { width: 65px; height: 65px; font-size: 2rem; }
}