/* assets/css/style.css */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1a1a1a;
  --orange:  #FF9500;
  --red:     #C13030;
  --green:   #25d366;
  --dark:    #222222;
  --gray:    #69727d;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  text-align: center;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
}
.btn:hover { opacity: 0.85; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-blue   { background: var(--blue);   color: var(--white); }

/* ── Header / Nav ── */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo img { height: 60px; }

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue);
    padding: 1rem 0;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: center; gap: 1rem; }
}

/* ── Sections ── */
section { padding: 4rem 0; }
section:nth-child(even) { background: #f9f9f9; }

/* ── Hero ── */
section.hero {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 5rem 1rem;
}
section.hero img.hero-logo { height: 120px; margin: 0 auto 1.5rem; }
section.hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }
section.hero p  { font-size: 1.15rem; max-width: 640px; margin: 0 auto 2rem; line-height: 1.6; }
section.hero .social-icons { margin-top: 2rem; display: flex; justify-content: center; gap: 1rem; }
section.hero .social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.2s;
}
section.hero .social-icons a:hover { color: var(--orange); }

/* ── Video Background ── */
.video-section {
  position: relative;
  overflow: hidden;
  background: #111;
}
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Landscape 16:9 (padrão) */
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}
/* Portrait 9:16: o iframe fica muito alto — preenche a largura e corta topo/base */
.video-bg.portrait iframe {
  width: 100vw;
  height: 177.78vw;   /* 100vw × (16/9) */
  min-height: 100%;
  min-width: unset;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  z-index: 1;
}
.video-section > .container,
.video-section > div:not(.video-bg) {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .video-bg { display: none; }
  .video-section { background: var(--blue); }
}

/* ── Parallax ── */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.parallax-banner {
  min-height: 420px;
  padding: 0;
}
@media (max-width: 768px) {
  /* background-attachment:fixed não funciona em iOS */
  .parallax { background-attachment: scroll; }
}

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-body h3 { font-size: 1.2rem; color: var(--orange); margin-bottom: 0.5rem; }
.card-body p  { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid img { border-radius: 8px; }
.about-text h2 { color: var(--orange); font-size: 1.8rem; margin-bottom: 1rem; }
.about-text p  { line-height: 1.8; margin-bottom: 1rem; color: var(--gray); }
.about-text .tagline {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  border-left: 4px solid var(--orange);
  padding-left: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ── Menu ── */
.menu-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.menu-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.menu-card img { width: 100%; height: 200px; object-fit: cover; }
.menu-card-body { padding: 1.25rem; }
.menu-card-body h3 { color: var(--orange); font-size: 1.2rem; margin-bottom: 0.5rem; }
.menu-card-body p  { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

.american-bbq {
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  padding: 3rem;
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.american-bbq img { height: 80px; }
.american-bbq h2 { color: var(--orange); font-size: 1.8rem; }
.american-bbq ul { margin-top: 1rem; padding-left: 1.2rem; }
.american-bbq ul li { margin-bottom: 0.4rem; color: #ccc; }
@media (max-width: 768px) {
  .american-bbq { flex-direction: column; padding: 2rem 1rem; }
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.review-card img.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}
.review-card .stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-card .name  { font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.review-card .text  { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.google-badge { text-align: center; margin-bottom: 2rem; }
.google-badge img { height: 60px; margin: 0 auto; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h3 { color: var(--orange); margin-bottom: 1rem; }
.contact-info p { margin-bottom: 0.75rem; color: var(--gray); }
.contact-info .whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}
.contact-form label { display: block; font-weight: 600; margin-bottom: 0.3rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form textarea { height: 130px; resize: vertical; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Footer ── */
footer {
  background: var(--blue);
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}
footer .social-icons { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
footer .social-icons a { color: var(--white); font-size: 1.4rem; }
footer .social-icons a:hover { color: var(--orange); }
footer p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
footer .areas { margin: 0.5rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--green);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 34px; height: 34px; fill: white; }
