:root{
  --bg:#070707;
  --panel:#0e0e0e;
  --accent:#ff6a00;
  --muted:#bfbfbf;
  --glass: rgba(255,255,255,0.03);
  --max-width:1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  scroll-behavior:smooth;
}

.container{
  width:calc(100% - 40px);
  max-width:var(--max-width);
  margin:0 auto;
}

/* header */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25));
  z-index:1000;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--accent)}
.brand-emoji{font-size:1.6rem}
.brand-name{font-family: "Montserrat", "Poppins", sans-serif; font-weight:700; letter-spacing:0.4px}

.main-nav ul{
  list-style:none;
  display:flex;
  gap:22px;
  margin:0;
  padding:0;
}
.main-nav a{
  color:#e9e9e9;
  text-decoration:none;
  font-weight:600;
  padding:8px 6px;
  border-radius:6px;
}
.main-nav a:hover,
.main-nav a.active{
  color:var(--bg);
  background:var(--accent);
  transform:translateY(-2px);
}

/* HERO */
.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  position:relative;
  padding-top:90px; /* espaço pra header */
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('https://images.unsplash.com/photo-1548365328-9d1b5a2e0b2b?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}
.hero-overlay{position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55));}
.hero-content{position:relative; z-index:2; max-width:900px; text-align:center; margin:100px auto}
.hero-title{font-family:"Montserrat",sans-serif; font-weight:700; font-size:2.6rem; margin-bottom:12px; letter-spacing:0.4px}
.hero-sub{color:var(--muted); font-size:1.05rem; margin-bottom:20px; line-height:1.6}

/* buttons */
.btn{
  display:inline-block;
  text-decoration:none;
  padding:10px 18px;
  border-radius:28px;
  font-weight:600;
  transition:all .18s ease;
}
.btn-primary{
  background:linear-gradient(180deg,var(--accent), #ff5000);
  color:#111;
  box-shadow: 0 8px 30px rgba(255,106,0,0.14);
}
.btn-primary:hover{transform:translateY(-4px)}
.btn-ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:#fff;
  margin-left:12px;
}

/* sections */
.section{padding:80px 0}
.section-inner{display:block; gap:30px}
.section-title{font-family:"Montserrat",sans-serif; color:var(--accent); font-size:1.6rem; margin-bottom:8px}
.section-sub{color:var(--muted); margin-bottom:20px}

/* about */
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:center}
.about-media img{width:100%; height:320px; object-fit:cover; border-radius:12px; box-shadow:0 10px 30px rgba(0,0,0,0.5)}
.about-content p{color:var(--muted); line-height:1.6}
.bullets{list-style:none; padding-left:0; margin-top:14px; color:var(--muted)}
.bullets li{position:relative; padding-left:20px; margin-bottom:10px}
.bullets li::before{content:"•"; position:absolute; left:0; color:var(--accent)}

/* cardapio */
.dark-section{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.03))}
.card-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-top:22px}
.card{background:var(--panel); border-radius:12px; overflow:hidden; transition:transform .25s ease, box-shadow .25s ease; cursor:default}
.card:hover{transform:translateY(-8px); box-shadow:0 18px 40px rgba(0,0,0,0.6)}
.card-media{height:190px; overflow:hidden}
.card-media img{width:100%; height:100%; object-fit:cover; display:block}
.card-body{padding:14px}
.card-body h3{margin:0 0 6px 0; color:var(--accent)}
.card-body p{color:var(--muted); margin:0 0 12px 0; font-size:0.96rem}
.card-actions{display:flex; gap:10px; align-items:center}
.price{font-weight:700; color:#fff}

/* filters */
.card-filters{margin-top:20px; display:flex; gap:10px; justify-content:center}
.filter{background:transparent; border:1px solid rgba(255,255,255,0.04); color:var(--muted); padding:8px 12px; border-radius:999px; cursor:pointer}
.filter.active{background:var(--accent); color:var(--bg); border-color:transparent}

/* contact grid */
.contact-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:20px}
.contact-card{background:var(--panel); padding:18px; border-radius:10px; color:var(--muted)}
.contact-card h3{margin-top:0; color:#fff}

/* map placeholder */
.map-placeholder{display:flex; justify-content:center; margin-top:18px}
.map-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02)); padding:20px; border-radius:10px; text-align:center; color:var(--muted)}

/* footer */
.site-footer{padding:20px 0; border-top:1px solid rgba(255,255,255,0.03); margin-top:40px}
.footer-inner{display:flex; justify-content:space-between; align-items:center; color:var(--muted); font-size:0.95rem}
.footer-note{color:var(--muted)}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.ifood-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px;
  right: 25px;
  background-color: #d6cfce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ifood-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.ifood-float img {
  width: 35px;
  height: 35px;
}

/* responsive */
@media(max-width:1000px){
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr; text-align:left}
  .hero-title{font-size:2.2rem}
}
@media(max-width:640px){
  .main-nav ul{display:none}
  .card-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .header-inner{padding:12px 16px}
  .hero-content{margin:70px 0}
  .hero-sub{font-size:0.98rem}
  .brand-name{font-size:1rem}
}

.social {
  color: var(--muted);
}

.social:hover {
  color: var(--accent);
}

.footer-note {
  text-align: center;
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 20px;
}

.footer-note .mirae {
  color: #ff7b00; /* laranja da Mirae */
  font-weight: 600;
  transition: color 0.3s;
  text-decoration: underline; /* deixa sublinhado */
  text-decoration-color: #ff7b00; /* cor do traço */
  text-underline-offset: 3px;
  cursor: pointer;
}

.logo-img {
  width: 60px;
  height: auto;
  border: 2px solid #ff7b00;
  border-radius: 50%;
  padding: 4px
}

.img-logo {
  border: 2px solid #ff7b00;
  border-radius: 50%;
  padding: 4px
}

/* Modal de Pedido */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: #111;
  color: #fff;
  border-radius: 10px;
  max-width: 450px;
  width: 100%;
  padding: 30px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #ff7f00;
  text-align: center;
}

.modal-content label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 500;
}

.modal-content input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
  font-size: 1rem;
}

.modal-content input:focus {
  outline: 2px solid #ff7f00;
}

.modal-content .btn {
  width: 100%;
  margin-top: 10px;
  background: #ff7f00;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.modal-content .btn:hover {
  background: #ff9500;
}

/* Botão fechar */
.modal .close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #ff7f00;
}

.modal .close:hover {
  color: #fff;
}
