/* ================================================
   BROTHERS BURGER — Stylesheet
   Identidade: Laranja retro americano, branco, checkered
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;600;700&family=Pacifico&display=swap');

/* ---- Variables ---- */
:root {
  --orange:       #F47920;
  --orange-dark:  #D96510;
  --orange-light: #FFA050;
  --dark:         #1C0A00;
  --dark-mid:     #3D1F00;
  --white:        #FFFFFF;
  --cream:        #FFF8F0;
  --gray:         #7A5A3A;
  --gray-light:   #A07850;
  --green-wa:     #25D366;
  --radius:       10px;
  --shadow:       0 6px 24px rgba(28,10,0,.15);
  --transition:   .25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--cream); color: var(--dark); font-family: 'Poppins', sans-serif; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1.5px; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p  { color: var(--gray); font-size: .95rem; }

/* ---- Container ---- */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Checkered Pattern ---- */
.checkered {
  background-image: repeating-conic-gradient(var(--orange) 0% 25%, transparent 0% 50%);
  background-size: 14px 14px;
  background-color: var(--white);
}
.checkered-dark {
  background-image: repeating-conic-gradient(var(--dark) 0% 25%, transparent 0% 50%);
  background-size: 14px 14px;
  background-color: var(--orange);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,121,32,.35); }

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-mid); }

.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--cream); }

.btn-whatsapp { background: var(--green-wa); color: #fff; gap: .5rem; display: inline-flex; align-items: center; }
.btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 8px 24px rgba(37,211,102,.35); }

.btn-outline-white { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--orange); }

/* ---- Section Defaults ---- */
section { padding: 5rem 0; }
.section-label {
  color: var(--orange);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.section-title { margin: .4rem 0 1.2rem; color: var(--dark); }
.section-subtitle { color: var(--gray); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--orange);
  box-shadow: 0 3px 16px rgba(244,121,32,.4);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--white);
}
.logo-tag {
  font-family: 'Pacifico', cursive;
  font-size: .65rem;
  color: var(--dark);
  letter-spacing: 1px;
}

/* With image logo */
.logo-img { height: 56px; width: 56px; object-fit: cover; border-radius: 50%; border: 3px solid rgba(255,255,255,0.9); }

/* Desktop nav */
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--white);
}
.nav-links .btn { font-size: .8rem; padding: .5rem 1.2rem; border-bottom: none; }

/* Mobile nav toggle (pure CSS) */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle-label span {
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  .nav-links {
    position: fixed;
    top: 76px; /* header 70px + 6px stripe */
    left: 0; right: 0;
    background: var(--orange-dark);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav-links a { padding: 1rem 1.5rem; width: 100%; border-bottom: 1px solid rgba(255,255,255,.15); border-right: none; }
  .nav-links a.active, .nav-links a:hover { border-bottom-color: rgba(255,255,255,.15); background: rgba(0,0,0,.1); }
  .nav-links .btn { margin: 1rem 1.5rem; width: calc(100% - 3rem); text-align: center; }
  .nav-toggle:checked ~ .nav-links { max-height: 400px; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 800px;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.hero-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 3rem 3rem 3rem max(1.5rem, calc((100vw - 1140px) / 2 + 1.5rem));
  z-index: 1;
}
.hero-content { max-width: 540px; }
.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 768px) {
  .hero { height: auto; padding-bottom: 0; }
  .hero-left { position: relative; width: 100%; height: auto; padding: 3rem 1.5rem; }
  .hero-right { position: relative; width: 100%; height: 340px; }
}
.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.05rem; max-width: 480px; margin-bottom: 2rem; color: rgba(255,255,255,.75); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--orange);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 500px; margin: .8rem auto 0; }
.page-hero .section-label { color: rgba(255,255,255,.7); }

/* ============================================================
   FEATURES (Por que Brothers Burger)
   ============================================================ */
.features { background: var(--dark); }
.features .section-label { color: var(--orange); }
.features .section-title { color: var(--white); }
.features .section-subtitle { color: rgba(255,255,255,.6); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--dark-mid);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--orange);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .5rem; }
.feature-card p { color: rgba(255,255,255,.6); }

/* ============================================================
   MENU / CARDS
   ============================================================ */
.menu-section { background: var(--white); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-5px); border-color: var(--orange); }
.menu-card-img {
  height: 180px;
  background: linear-gradient(135deg, #FFE0C0 0%, #FFD0A0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.menu-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.menu-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.menu-card-body h4 { color: var(--dark); margin-bottom: .4rem; }
.menu-card-body p { font-size: .85rem; flex: 1; color: var(--gray); }
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid #F0E0D0;
}
.menu-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--orange); }
.menu-badge { background: var(--orange); color: #fff; font-size: .65rem; font-weight: 700; text-transform: uppercase; padding: .25rem .7rem; border-radius: 50px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--orange);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: .8rem; }
.cta-banner p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; margin-left: auto; margin-right: auto; max-width: 500px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, #FFE0C0 0%, #FFB870 100%);
  border-radius: var(--radius);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9rem;
  border: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 10px;
  background-image: repeating-conic-gradient(var(--orange) 0% 25%, transparent 0% 50%);
  background-size: 20px 20px;
  background-color: var(--dark);
}
.about-section { background: var(--cream); }
.about-section .section-title { color: var(--dark); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border-bottom: 4px solid var(--orange);
  box-shadow: var(--shadow);
}
.value-card .icon { font-size: 2rem; margin-bottom: .8rem; }
.value-card h4 { font-size: 1.1rem; color: var(--orange); margin-bottom: .4rem; }
.value-card p { font-size: .82rem; color: var(--gray); }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.mvv-card h3 { font-size: 1.5rem; margin-bottom: .8rem; }

.whatsapp-usage {
  background: #F0FFF4;
  border: 2px solid rgba(37,211,102,.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 3rem;
}
.whatsapp-usage h3 { color: #1a7a3a; margin-bottom: 1rem; }
.whatsapp-usage ul { padding-left: .5rem; }
.whatsapp-usage li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  font-size: .9rem;
  color: #2d5a3d;
}
.whatsapp-usage li::before { content: '✓'; position: absolute; left: 0; color: var(--green-wa); font-weight: 700; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-list { margin-top: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 12px rgba(244,121,32,.3);
}
.contact-item-text strong { display: block; color: var(--dark); font-size: .85rem; font-weight: 700; margin-bottom: .2rem; }
.contact-item-text span { font-size: .85rem; color: var(--gray); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .5rem; }
.hours-row { font-size: .8rem; color: var(--gray); }
.hours-row strong { color: var(--dark); display: block; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 3px solid var(--orange); box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 400px; border: 0; display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper iframe { height: 280px; }
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-wrap { background: var(--cream); }
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.policy-content h2 {
  font-size: 1.8rem;
  color: var(--orange);
  margin: 2.5rem 0 .8rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #F0E0D0;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 1rem; font-size: .92rem; color: var(--gray); }
.policy-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.policy-content ul li { font-size: .92rem; color: var(--gray); margin-bottom: .4rem; list-style: disc; }
.policy-content a { color: var(--orange); text-decoration: underline; }
.policy-meta {
  font-size: .8rem;
  color: var(--gray-light);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid #F0E0D0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 4rem 0 0;
}
.footer-top-stripe {
  display: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-main { font-size: 1.4rem; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.5); max-width: 240px; }
.footer-brand .cnpj { margin-top: .8rem; font-size: .75rem; color: rgba(255,255,255,.35); }

.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .6rem; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-col .contact-line span:first-child { font-size: 1rem; min-width: 1.2rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-orange { color: var(--orange); }
.text-dark   { color: var(--dark); }
.text-center { text-align: center; }
.bg-white    { background: var(--white); }
.bg-cream    { background: var(--cream); }
.bg-dark     { background: var(--dark); }
.bg-orange   { background: var(--orange); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.divider { height: 2px; background: #F0E0D0; margin: 2rem 0; }

/* WhatsApp SVG icon helper */
.wa-icon { width: 18px; height: 18px; fill: currentColor; }
