/*
Theme Name:  Mercado Zamilian
Theme URI:   #
Description: Landing page oficial do Mercado Zamilian — Santa Paula, Ponta Grossa/PR
Author:      Analytikos
Author URI:  https://analytikos.com.br
Version:     4.0.0
License:     Proprietário
Text Domain: zamilian
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --red:       #CC0000;
  --red-dark:  #9A0000;
  --red-glow:  rgba(204,0,0,0.28);
  --black:     #0A0A0A;
  --dark:      #111111;
  --dark-2:    #181818;
  --dark-3:    #212121;
  --yellow:    #F5A500;
  --white:     #FFFFFF;
  --w90:       rgba(255,255,255,0.90);
  --w60:       rgba(255,255,255,0.55);
  --w30:       rgba(255,255,255,0.22);
  --w10:       rgba(255,255,255,0.07);
  --light:     #F0EFE9;
  --gray:      #555555;

  /* Fontes */
  --font-display: 'Geist', sans-serif;          /* headings grandes */
  --font-body:    'Instrument Sans', sans-serif; /* corpo + labels   */
  --font-serif:   'Playfair Display', serif;     /* citação itálica  */

  --nav-h:  72px;
  --radius: 3px;
  --ease:   0.3s cubic-bezier(0.4,0,0.2,1);
  --ease-o: 0.5s cubic-bezier(0,0,0.2,1);

  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 7rem;
}

/* ============================================================
   BASE
   ============================================================ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(10,10,10,0.96);
  border-bottom-color: var(--w10);
  backdrop-filter: blur(14px);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

.nav-logo img { height: 38px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--w60);
  transition: color var(--ease);
}

.nav-links a:hover { color: var(--white); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  transition: opacity var(--ease), transform var(--ease);
  white-space: nowrap;
}

.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color var(--ease);
}

.nav-mobile a:hover { color: var(--red); }

.nav-mobile__close {
  position: absolute;
  top: 22px; right: 24px;
  background: none; border: none;
  color: var(--w60);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--ease);
}
.nav-mobile__close:hover { color: var(--white); }

/* ============================================================
   HERO  — imagem de fundo + overlay escuro
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) var(--gap-md) 4rem;
  text-align: center;
  overflow: hidden;

  /* background-image definido via PHP no index.php */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--black);
}

/* Overlay escuro sobre a foto — 50% de opacidade */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.50);
  z-index: 1;
}

/* Todo conteúdo da hero fica acima do overlay */
.hero__logo,
.hero__rule,
.hero__slogan,
.hero__actions {
  position: relative;
  z-index: 2;
}

.hero__logo {
  width: clamp(240px, 55vw, 760px);
  height: auto;
  animation: heroIn 0.9s cubic-bezier(0.4,0,0.2,1) both;
  filter: drop-shadow(0 4px 40px rgba(204,0,0,0.22));
}

@keyframes heroIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.hero__rule {
  width: clamp(240px, 55vw, 760px);
  height: 2px;
  background: var(--red);
  margin: 2.5rem auto;
  transform-origin: left;
  animation: ruleIn 0.65s 0.55s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes ruleIn {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.hero__slogan {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w60);
  animation: fadeUp 0.6s 0.85s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 1.05s ease both;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--w60);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--w30);
  border-radius: var(--radius);
}

.hero__rating-stars { color: var(--yellow); letter-spacing: 1px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--w90);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.9rem 2rem;
  border: 1px solid var(--w30);
  border-radius: var(--radius);
  transition: border-color var(--ease), background var(--ease);
}

.btn-outline:hover { border-color: var(--white); background: var(--w10); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before { left:  0; background: linear-gradient(to right, var(--red), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--red), transparent); }

.ticker__track {
  display: inline-flex;
  animation: tickerScroll 34s linear infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker__item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0 0.5rem;
}

.ticker__sep {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  padding: 0 0.4rem;
}

/* ============================================================
   DEPARTAMENTOS — lista editorial
   ============================================================ */
.departamentos {
  background: var(--black);
  padding: var(--gap-xl) 0;
}

.section-header { margin-bottom: 3rem; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Rows */
.dept-list { border-top: 1px solid var(--w30); }

.dept-row {
  display: grid;
  grid-template-columns: 52px 1fr 210px 28px;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--w10);
  /* Sweep: background-size da esquerda para direita — sem pseudo-elemento, sem z-index */
  background-image: linear-gradient(var(--red), var(--red));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.dept-row:hover { background-size: 100% 100%; }

.dept-row__num {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  transition: color var(--ease);
}

.dept-row:hover .dept-row__num { color: rgba(255,255,255,0.4); }

.dept-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: letter-spacing var(--ease);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dept-row:hover .dept-row__name { letter-spacing: 0.02em; }

.dept-row__desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--w60);
  line-height: 1.5;
  transition: color var(--ease);
}

.dept-row:hover .dept-row__desc { color: rgba(255,255,255,0.75); }

.dept-row__arrow {
  font-size: 1rem;
  color: var(--w30);
  transition: transform var(--ease), color var(--ease);
  text-align: right;
}

.dept-row:hover .dept-row__arrow {
  transform: translateX(4px);
  color: var(--white);
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  background: var(--dark-2);
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--w10);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.sobre__quote { position: relative; padding-left: 1.5rem; }

.sobre__quote::before {
  content: '"';
  position: absolute;
  left: -1.25rem;
  top: -1.5rem;
  font-family: var(--font-serif);
  font-size: 9rem;
  line-height: 0.8;
  color: var(--red);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}

.sobre__quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.25rem);
  line-height: 1.35;
  color: var(--w90);
  margin-bottom: 1.5rem;
}

.sobre__quote-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--w60);
  line-height: 1.78;
  margin-bottom: 2rem;
  max-width: 460px;
}

.sobre__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

/* Stats */
.sobre__stats {
  border-top: 1px solid var(--w30);
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--w10);
  gap: 1rem;
}

.stat-row__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--w60);
  flex-shrink: 0;
}

.stat-row__value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-row__value .accent { color: var(--yellow); }
.stat-row__value .red    { color: var(--red); }

/* ============================================================
   AVALIAÇÕES
   ============================================================ */
.avaliacoes {
  background: var(--black);
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--w10);
}

.avaliacoes__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--gap-xl);
  align-items: start;
  margin-bottom: var(--gap-lg);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--w10);
}

.rating-block {
  text-align: center;
  padding: 2rem 3rem;
  border: 1px solid var(--w10);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.rating-block__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.rating-block__stars {
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 3px;
  margin: 0.4rem 0;
}

.rating-block__count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w60);
}

.review-featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}

.review-featured__stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 3px; }

.review-featured__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  line-height: 1.48;
  color: var(--w90);
}

.review-featured__author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w60);
}

.avaliacoes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--w10);
}

.review-card {
  background: var(--dark);
  padding: 1.75rem;
  transition: background var(--ease);
}

.review-card:hover { background: var(--dark-2); }

.review-card__stars {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card__text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--w60);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.review-card__author {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w30);
}

/* ============================================================
   CTA WHATSAPP — imagem de churrasco + overlay vermelho
   ============================================================ */
.cta-whatsapp {
  position: relative;
  padding: var(--gap-xl) 0;
  overflow: hidden;

  /* background-image definido via PHP no index.php */
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-color: var(--red-dark);
}

/* Overlay vermelho sobre a foto */
.cta-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(165, 0, 0, 0.87);
  z-index: 1;
}

.cta-whatsapp__inner {
  position: relative;
  z-index: 2;
}

.cta-whatsapp__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.cta-whatsapp__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 0.6rem;
}

.cta-whatsapp__phone {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-whatsapp:hover {
  background: #111;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

.btn-whatsapp svg { width: 20px; height: 20px; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  background: var(--dark-2);
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--w10);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--gap-xl);
  align-items: start;
}

.contato__info { padding-top: 0.25rem; }

.info-block { margin-bottom: 1.75rem; }

.info-block__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.info-block__content {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--w90);
  line-height: 1.6;
}

.info-block__content a { color: var(--w90); transition: color var(--ease); }
.info-block__content a:hover { color: var(--red); }

.horarios-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.horarios-table tr { border-bottom: 1px solid var(--w10); }
.horarios-table tr:last-child { border-bottom: none; }
.horarios-table td { padding: 0.6rem 0; color: var(--w90); }
.horarios-table td:last-child { text-align: right; color: var(--w60); }
.horarios-table .hl td { color: var(--yellow); }

.contato__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--w10);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.contato__map iframe {
  width: 100%; height: 420px;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--w10);
  padding: var(--gap-lg) 0 var(--gap-md);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}

.footer-brand__logo { margin-bottom: 1.1rem; }
.footer-brand__logo img { height: 42px; width: auto; opacity: 0.85; }

.footer-brand__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--w60);
  line-height: 1.65;
  max-width: 280px;
}

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--w30);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w60);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col__title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w60);
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.875rem; color: var(--w60); transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }

.site-footer__bottom {
  border-top: 1px solid var(--w10);
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom__copy { font-size: 0.78rem; color: var(--w60); }

.footer-bottom__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom__legal a { font-size: 0.78rem; color: var(--w60); transition: color var(--ease); }
.footer-bottom__legal a:hover { color: var(--white); }

.footer-bottom__cnpj { font-size: 0.72rem; color: var(--gray); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dept-row             { grid-template-columns: 48px 1fr 24px; }
  .dept-row__desc       { display: none; }
  .sobre__grid          { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .avaliacoes__top      { grid-template-columns: 1fr; gap: var(--gap-md); }
  .rating-block         { text-align: left; padding: 1.5rem 0; border: none; border-bottom: 1px solid var(--w10); }
  .contato__grid        { grid-template-columns: 1fr; }
  .site-footer__grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gap-xl: 3.5rem; --gap-lg: 2rem; }

  .nav-links, .btn-nav { display: none; }
  .nav-toggle          { display: flex; }

  /* Departamentos */
  .dept-row             { grid-template-columns: 30px 1fr 18px; gap: 0.75rem; }
  .dept-row__name       { font-size: clamp(1.25rem, 5.5vw, 1.6rem); }
  .dept-row__desc       { display: none; }

  /* Section titles */
  .section-headline     { font-size: clamp(1.75rem, 8vw, 2.5rem); }

  /* CTA */
  .cta-whatsapp__headline { font-size: clamp(1.8rem, 9vw, 3rem); }

  /* Avaliações */
  .avaliacoes__grid     { grid-template-columns: 1fr; }
  .avaliacoes__top      { gap: var(--gap-md); }
  .review-featured__text { font-size: clamp(1rem, 4vw, 1.3rem); }

  /* Sobre */
  .sobre__quote-text    { font-size: clamp(1.2rem, 5vw, 1.75rem); }

  /* Footer */
  .site-footer__grid    { grid-template-columns: 1fr; gap: var(--gap-md); }
  .site-footer__bottom  { flex-direction: column; text-align: center; }
  .footer-bottom__legal { justify-content: center; }
}

@media (max-width: 400px) {
  .dept-row__name       { font-size: 1.15rem; }
  .section-headline     { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero__actions        { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary,
  .btn-outline          { width: 100%; justify-content: center; }
  .sobre__quote::before { font-size: 6rem; left: -0.5rem; }
}
