/* ============================================================
   PADARIA BELLA IMPERIAL — STYLES
   Aesthetic: parchment, chalkboard, paper notes, warm bakery.
   ============================================================ */

:root {
  --crimson: #8B0D0D;
  --crimson-deep: #6B0808;
  --crimson-soft: #A52424;
  --gold: #C9A020;
  --gold-soft: #E0BC4F;
  --green: #1A5225;
  --green-soft: #2A6B35;
  --parchment: #FFF8F0;
  --parchment-deep: #F4E8D0;
  --paper: #FBF4E4;
  --warm-brown: #3D1C02;
  --ink: #2A1A0E;
  --chalk-bg: #1E2B1A;
  --chalk-bg-deep: #14201F;
  --chalk-text: #F5EDD8;
  --chalk-yellow: #F4D85B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Lora', Georgia, serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   PARCHMENT TEXTURE — applied via SVG noise
   ============================================================ */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.30  0 0 0 0 0.15  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--crimson);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 0 var(--crimson-deep), 0 6px 18px rgba(0,0,0,0.18);
  transition: padding 0.25s ease;
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-soft);
}

.nav__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--crimson-deep);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__brand-top {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--gold-soft);
}

.nav__brand-bottom {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: #FFEFC9;
}

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 16px;
  color: #FFEFC9;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.nav__links a:hover { color: var(--gold-soft); }
.nav__links a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold-soft);
  transition: transform 0.25s ease, opacity 0.2s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, #FFFAEC 0%, var(--parchment) 50%, var(--parchment-deep) 100%);
  padding: 80px 24px 90px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 0.50  0 0 0 0 0.30  0 0 0 0 0.10  0 0 0 0.22 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,32,0.12) 0%, transparent 70%);
  z-index: 0;
}
.hero::before { top: -100px; left: -100px; }
.hero::after { bottom: -100px; right: -100px; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  padding: 8px 22px;
  border-top: 1px solid var(--crimson);
  border-bottom: 1px solid var(--crimson);
  margin-bottom: 36px;
}

.hero__logo {
  width: 220px;
  height: 220px;
  margin: 0 auto 32px;
  border-radius: 50%;
  border: 6px solid var(--gold);
  box-shadow:
    0 0 0 2px var(--crimson),
    0 12px 40px rgba(139, 13, 13, 0.3),
    inset 0 0 30px rgba(0,0,0,0.2);
  object-fit: cover;
}

.hero__tagline {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 82px);
  line-height: 1;
  color: var(--crimson-deep);
  margin-bottom: 24px;
  text-shadow: 2px 2px 0 rgba(201, 160, 32, 0.18);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--warm-brown);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__hours {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green);
  font-size: 16px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: 18px;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--crimson);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
  font-weight: 600;
}

.link-cta:hover {
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}

.link-cta__icon { font-size: 22px; }

.link-cta__dot {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  margin: 0 -4px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 60px;
  color: var(--gold);
}

.ornament__line {
  display: block;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.ornament__symbol {
  font-size: 24px;
  color: var(--crimson);
}

/* ============================================================
   SOBRE
   ============================================================ */

.sobre {
  position: relative;
  padding: 110px 0 100px;
  background: var(--parchment);
  z-index: 1;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px;
}

.kicker--light { color: var(--gold-soft); }

.sobre__text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  color: var(--warm-brown);
  margin-bottom: 22px;
  max-width: 480px;
}

.sobre__text > p {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 520px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--parchment-deep);
  border-left: 4px solid var(--gold);
  margin-bottom: 28px;
  max-width: 480px;
}

.rating__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
  display: flex;
}

.rating__half {
  background: linear-gradient(90deg, var(--gold) 50%, rgba(201,160,32,0.25) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating__text {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--warm-brown);
}

.rating__text strong {
  font-size: 22px;
  color: var(--crimson);
}

.sobre__quick {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sobre__quick li {
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sobre__quick span { font-size: 20px; }

.sobre__image {
  position: relative;
  height: 540px;
}

.placeholder-img {
  background:
    repeating-linear-gradient(45deg, rgba(139,13,13,0.04) 0 12px, rgba(139,13,13,0.07) 12px 24px),
    var(--parchment-deep);
  border: 1px solid rgba(139,13,13,0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-img__label {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(61,28,2,0.5);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px 18px;
}

.placeholder-img--tall {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 100%;
  box-shadow: 8px 8px 0 var(--crimson);
}

.placeholder-img--small {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 45%;
  height: 220px;
  box-shadow: -6px 6px 0 var(--gold);
  z-index: 2;
}

/* ============================================================
   CARDÁPIO — CHALKBOARD
   ============================================================ */

.cardapio {
  padding: 90px 24px;
  background: var(--warm-brown);
  position: relative;
  z-index: 1;
}

.cardapio__board {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--chalk-bg);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='c'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23c)'/></svg>");
  border: 14px solid #5C3A1A;
  border-radius: 8px;
  padding: 70px 60px 60px;
  box-shadow:
    inset 0 0 60px rgba(0,0,0,0.5),
    inset 0 0 120px rgba(0,0,0,0.3),
    0 12px 40px rgba(0,0,0,0.4),
    0 0 0 4px rgba(0,0,0,0.2);
  position: relative;
}

.cardapio__board::before, .cardapio__board::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, #C9A020 30%, #6B5410 100%);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.cardapio__board::before { top: 12px; left: 12px; }
.cardapio__board::after { top: 12px; right: 12px; }

.cardapio__header {
  text-align: center;
  margin-bottom: 50px;
  color: var(--chalk-text);
}

.chalk-kicker {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--chalk-yellow);
  margin-bottom: 6px;
}

.chalk-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--chalk-text);
  margin-bottom: 10px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.chalk-sub {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--chalk-yellow);
  opacity: 0.9;
}

.cardapio__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 60px;
  margin-bottom: 40px;
}

.dish {
  color: var(--chalk-text);
  padding-left: 50px;
  position: relative;
  border-bottom: 1px dashed rgba(245,237,216,0.15);
  padding-bottom: 24px;
}

.dish__icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 32px;
  filter: grayscale(0.2) brightness(1.1);
}

.dish h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--chalk-yellow);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.dish p {
  font-size: 16px;
  color: rgba(245,237,216,0.85);
  margin-bottom: 8px;
  line-height: 1.55;
}

.dish__price {
  font-family: var(--font-display);
  font-style: italic;
  color: #FFC857 !important;
  font-size: 17px !important;
  margin-top: 10px !important;
}

.dish--featured h3 {
  color: #FFC857;
}

.dish--featured::before {
  content: '★';
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 22px;
  color: var(--chalk-yellow);
}

.cardapio__footnote {
  text-align: center;
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--chalk-yellow);
  opacity: 0.85;
  margin-top: 20px;
}

/* ============================================================
   PROMOÇÕES — COUPON
   ============================================================ */

.promocoes {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at center, var(--parchment) 0%, var(--parchment-deep) 100%);
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--warm-brown);
  line-height: 1.1;
}

.section-head--light h2 { color: var(--parchment); }

.section-head__sub {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--green);
  margin-top: 10px;
  opacity: 0.95;
}

/* ---------- Coupon highlight chips ---------- */

.coupon__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 0 0 28px;
}

.coupon__chips li {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--crimson-deep);
  background: rgba(201,160,32,0.12);
  border: 1px solid rgba(201,160,32,0.45);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.coupon {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  position: relative;
  padding: 60px 70px;
  border: 2px dashed var(--crimson);
  outline: 1px solid rgba(139,13,13,0.3);
  outline-offset: 8px;
  box-shadow:
    0 4px 0 rgba(139,13,13,0.15),
    0 20px 40px rgba(0,0,0,0.12);
  transform: rotate(-0.5deg);
}

.coupon::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(139,13,13,0.2);
  pointer-events: none;
}

.coupon__perforation {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 16px 0;
}

.coupon__perforation::before {
  content: '';
  width: 12px;
  height: 100%;
  background-image: radial-gradient(circle, var(--parchment-deep) 4px, transparent 5px);
  background-size: 12px 18px;
  background-repeat: repeat-y;
}

.coupon__perforation--left { left: -6px; }
.coupon__perforation--right { right: -6px; }

.coupon__stamp {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 110px;
  height: 110px;
  border: 3px solid var(--crimson);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  transform: rotate(12deg);
  opacity: 0.75;
  text-align: center;
}

.coupon__stamp::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--crimson);
  border-radius: 50%;
  opacity: 0.5;
}

.coupon__stamp-year {
  font-size: 11px;
  margin-top: 4px;
  letter-spacing: 0.2em;
}

.coupon__body {
  text-align: center;
}

.coupon__small {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.coupon__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--crimson-deep);
  line-height: 1;
  margin-bottom: 14px;
}

.coupon__desc {
  font-size: 17px;
  color: var(--warm-brown);
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.coupon__prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.coupon__prices > div { text-align: center; }

.coupon__price {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: var(--crimson);
  line-height: 1;
}

.coupon__price sup {
  font-size: 26px;
  vertical-align: super;
  margin-left: 2px;
}

.coupon__price--alt { color: var(--green); font-size: 38px; }
.coupon__price--alt sup { font-size: 18px; }

.coupon__price-label {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--warm-brown);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.coupon__divider {
  width: 1px;
  height: 50px;
  background: rgba(139,13,13,0.3);
}

.coupon__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--crimson);
  border-bottom: 2px solid var(--gold);
  padding: 4px 0;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
}

.coupon__link:hover { color: var(--green); border-color: var(--green); }

/* ============================================================
   AVALIAÇÕES — CORK BOARD WITH PINNED PAPERS
   ============================================================ */

.avaliacoes {
  padding: 100px 24px;
  background:
    linear-gradient(135deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.avaliacoes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.15 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  pointer-events: none;
}

.section-head--light .kicker--light {
  color: var(--gold-soft);
}

.avaliacoes__overall {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--parchment);
}

.avaliacoes__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.avaliacoes__stars {
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 2px;
}

.avaliacoes__count {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,248,240,0.8);
}

.reviews {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.review {
  background: var(--paper);
  padding: 32px 32px 28px;
  position: relative;
  font-family: var(--font-body);
  box-shadow:
    0 1px 1px rgba(0,0,0,0.15),
    0 10px 20px rgba(0,0,0,0.18),
    0 18px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review--rot1 { transform: rotate(-1.8deg); }
.review--rot2 { transform: rotate(1.4deg); }
.review--rot3 { transform: rotate(-1deg); }
.review--rot4 { transform: rotate(2deg); }

.review:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 4px 4px rgba(0,0,0,0.2),
    0 16px 30px rgba(0,0,0,0.22),
    0 24px 50px rgba(0,0,0,0.2);
}

.review__pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 35% 35%, #E55, #8B0000 70%);
  border-radius: 50%;
  box-shadow:
    inset -2px -2px 4px rgba(0,0,0,0.3),
    0 2px 6px rgba(0,0,0,0.3);
}

.review__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review__quote {
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review__author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--crimson);
  text-align: right;
}

/* ============================================================
   CONTATO
   ============================================================ */

.contato {
  padding: 100px 0;
  background: var(--parchment);
  position: relative;
  z-index: 1;
}

.contato__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: stretch;
}

.contato__map {
  position: relative;
  min-height: 500px;
  border: 8px solid var(--paper);
  outline: 1px solid var(--parchment-deep);
  box-shadow:
    0 4px 0 rgba(139,13,13,0.1),
    0 20px 40px rgba(0,0,0,0.12);
}

.contato__map iframe {
  width: 100%;
  height: 100%;
  min-height: 484px;
  border: 0;
  display: block;
  filter: sepia(0.15) saturate(0.95);
}

.contato__info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--warm-brown);
  margin-bottom: 32px;
  line-height: 1.15;
}

.contato__block {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(139,13,13,0.25);
}

.contato__block:last-child { border-bottom: 0; }

.contato__block h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 8px;
  font-weight: 500;
}

.contato__block p {
  font-size: 17px;
  color: var(--ink);
}

.contato__phones {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contato__phones a {
  font-size: 17px;
  color: var(--ink);
  transition: color 0.2s;
}

.contato__phones a:hover { color: var(--crimson); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--crimson-deep);
  color: var(--parchment);
  padding: 70px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 4px solid var(--gold);
}

.footer__inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid var(--gold);
  object-fit: cover;
}

.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

.footer__tagline {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--parchment);
  margin-bottom: 32px;
  opacity: 0.9;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 15px;
  padding: 8px 16px;
  border: 1px solid rgba(255,248,240,0.25);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer__social a:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
  background: rgba(201,160,32,0.08);
}

.footer__social svg { flex-shrink: 0; }

.footer__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}

.footer__divider span:not(.footer__ornament) {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 50%, transparent);
}

.footer__ornament {
  color: var(--gold-soft);
  font-size: 22px;
}

.footer__copy {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,248,240,0.65);
  letter-spacing: 0.04em;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.whats-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 12px rgba(37,211,102,0.4),
    0 8px 24px rgba(0,0,0,0.18);
  z-index: 90;
  transition: transform 0.25s ease, box-shadow 0.25s;
}

.whats-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 6px 16px rgba(37,211,102,0.5),
    0 12px 32px rgba(0,0,0,0.22);
}

.whats-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  z-index: -1;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .sobre__grid,
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sobre__image { height: 420px; }

  .cardapio__board { padding: 50px 36px 40px; }

  .cardapio__items {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews { grid-template-columns: 1fr; max-width: 540px; gap: 50px; }

  .coupon { padding: 50px 40px; }

  .coupon__stamp {
    width: 80px;
    height: 80px;
    font-size: 11px;
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .nav__inner { padding: 12px 20px; }

  .nav__brand-text { display: none; }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 78px;
    right: 0;
    width: 100%;
    background: var(--crimson-deep);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-top: 2px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav__links.is-open { max-height: 400px; }

  .nav__links a {
    padding: 18px 28px;
    width: 100%;
    border-bottom: 1px solid rgba(201,160,32,0.15);
    font-size: 18px;
  }

  .nav__links a::after { display: none; }

  .hero { padding: 50px 20px 70px; }

  .hero__logo { width: 160px; height: 160px; }

  .hero__actions { flex-direction: column; gap: 14px; }

  .link-cta__dot { display: none; }

  .container { padding: 0 22px; }

  .sobre, .promocoes, .avaliacoes, .contato { padding: 70px 0; }

  .cardapio { padding: 60px 16px; }

  .cardapio__board { padding: 40px 24px 30px; border-width: 10px; }

  .coupon__chips li { font-size: 13px; padding: 5px 11px; }

  .coupon {
    padding: 40px 28px;
    transform: none;
  }

  .coupon__stamp {
    position: static;
    margin: 0 auto 24px;
    transform: rotate(-6deg);
  }

  .coupon__prices { gap: 20px; }

  .coupon__divider { display: none; }

  .review--rot1, .review--rot2, .review--rot3, .review--rot4 {
    transform: rotate(0deg);
  }

  .footer__social { gap: 16px; }

  .footer__social a { font-size: 14px; padding: 8px 12px; }

  .whats-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}

@media (max-width: 420px) {
  .hero__tagline { font-size: 44px; }
  .coupon__price { font-size: 44px; }
  .coupon__price--alt { font-size: 32px; }
}
