/* ============================================================
   BARBER EMERSON – style.css
   Tema: Dark Premium | Cores: #0d0d0d, Branco, #2596be
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #2596be;
  --blue-light:  #3db8e4;
  --blue-dark:   #1a729a;
  --bg-dark:     #0d0d0d;
  --bg-card:     #141414;
  --bg-panel:    #111111;
  --border:      rgba(37,150,190,.18);
  --border-light: rgba(255,255,255,.07);
  --text:        #f5f5f5;
  --text-muted:  #8e9aaa;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,.6);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font-main:   'Montserrat', sans-serif;
  --font-display:'Playfair Display', serif;
  --navbar-h:    68px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 3px; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: .02em;
}
.btn-primary {
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,150,190,.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(37,150,190,.55);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
  color: #fff;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* ---------- SECTION STYLES ---------- */
.section { padding: 6rem 0; position: relative; }
.section-dark { background: var(--bg-panel); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block;
  background: rgba(37,150,190,.12);
  border: 1px solid rgba(37,150,190,.35);
  color: var(--blue-light);
  padding: .3rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-title em { color: var(--blue); font-style: italic; }
.section-subtitle { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1.5rem;
}
.navbar.scrolled {
  background: rgba(13,13,13,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.7);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1.5rem;
}

/* Logo as image */
.navbar-logo {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  padding-block: .1rem;
}
.footer-logo {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: .75rem;
}
.logo { display: flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav-links li a:hover { color: var(--blue-light); }
.nav-links li a:hover::after { width: 100%; }
.nav-cta { padding: .55rem 1.4rem !important; font-size: .88rem !important; color: var(--text)!important;}
.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  color: inherit;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  z-index: 1001;
  position: relative;
  flex-shrink: 0;
  min-width: 36px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../assets/bg1.jpeg') center center / cover no-repeat;
  padding-top: var(--navbar-h);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,.55) 0%,
    rgba(13,13,13,.80) 55%,
    rgba(13,13,13,1) 100%
  );
}
/* Blue glow */
.hero::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,150,190,.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
/* Logo large in hero */
.hero-logo {
  height: 130px;
  width: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(37,150,190,.3));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,150,190,.15);
  border: 1px solid rgba(37,150,190,.4);
  color: var(--blue-light);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero-title em { color: var(--blue); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,245,245,.72);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--blue);
  font-size: 1.2rem;
  animation: bounceDown 2s infinite;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 2.5rem;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.stat > i {
  font-size: 1.8rem;
  color: var(--blue);
}
.stat div {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat span {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .2rem;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-light);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(370px, 100%), 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-category {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.service-category:hover {
  border-color: var(--border);
  box-shadow: 0 0 0 1px rgba(37,150,190,.15), 0 8px 40px rgba(0,0,0,.5);
  transform: translateY(-4px);
}
.category-title {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: .6rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .85rem;
}
.service-list { display: flex; flex-direction: column; gap: .5rem; }
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem .75rem;
  border-radius: 8px;
  transition: var(--transition);
}
.service-item:hover { background: rgba(37,150,190,.06); }
.service-info { display: flex; flex-direction: column; gap: .15rem; }
.service-name { font-size: .9rem; font-weight: 500; color: var(--text); }
.service-duration { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.service-price {
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.services-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.services-cta p { font-size: 1.1rem; color: var(--text-muted); }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sobre-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.sobre-image-frame img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(37,150,190,.15);
}
.sobre-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: .85rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 8px 24px rgba(37,150,190,.4);
}
.sobre-content { display: flex; flex-direction: column; gap: 1.25rem; }
.sobre-content p { color: var(--text-muted); line-height: 1.8; }
.sobre-content p strong { color: var(--text); }
.sobre-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: .5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.feature-item i { color: var(--blue); font-size: .85rem; }
.sobre-socials { display: flex; gap: 1rem; margin-top: .5rem; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--blue); color: var(--blue-light); background: rgba(37,150,190,.08); }
.social-link.wpp:hover { border-color: #25d366; color: #25d366; background: rgba(37,211,102,.08); }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.location-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: stretch;
  min-height: 460px;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.location-card:hover { border-color: var(--border); }
.location-card > i {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: .1rem;
}
.location-card div { display: flex; flex-direction: column; gap: .2rem; }
.location-card strong { font-size: .85rem; font-weight: 700; color: var(--text); }
.location-card span { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.location-card a { color: var(--blue-light); }
.location-card a:hover { color: #fff; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  min-height: 420px;
  background: var(--bg-card);
  box-shadow: 0 0 30px rgba(37,150,190,.1);
}
.map-container iframe { display: block; width: 100%; height: 100%; min-height: 420px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--border); }
.contact-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,.05);
  transition: var(--transition);
}
.contact-card strong { font-size: 1rem; color: var(--text); }
.contact-card span { font-size: .9rem; color: var(--text-muted); }

.contact-card.wpp .contact-icon { background: rgba(37,211,102,.12); color: #25d366; }
.contact-card.wpp:hover { border-color: #25d366; box-shadow: 0 8px 32px rgba(37,211,102,.15); }
.contact-card.instagram .contact-icon { background: rgba(225,48,108,.12); color: #e1306c; }
.contact-card.instagram:hover { border-color: #e1306c; box-shadow: 0 8px 32px rgba(225,48,108,.12); }
.contact-card.facebook .contact-icon { background: rgba(24,119,242,.12); color: #1877f2; }
.contact-card.facebook:hover { border-color: #1877f2; box-shadow: 0 8px 32px rgba(24,119,242,.12); }
.contact-card.agendamento .contact-icon { background: rgba(37,150,190,.12); color: var(--blue); }
.contact-card.agendamento:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(37,150,190,.18); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  border-top: 1px solid var(--border-light);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.8; }
.footer-links h4,
.footer-contact h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links ul li a { font-size: .9rem; color: var(--text-muted); }
.footer-links ul li a:hover { color: var(--blue-light); }
.footer-contact p { font-size: .9rem; color: var(--text-muted); margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.footer-contact p i { color: var(--blue); width: 16px; }
.footer-contact p a { color: var(--text-muted); }
.footer-contact p a:hover { color: var(--blue-light); }
.footer-socials { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--blue); color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-seo-text { margin-top: .4rem; font-size: .72rem !important; color: #222 !important; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.review-header {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-name {
  font-size: .95rem;
  color: var(--text);
  display: block;
}
.review-stars {
  color: #f4b400;
  font-size: .85rem;
  letter-spacing: .05em;
}
.review-google-logo {
  height: 18px;
  width: auto;
  margin-left: auto;
  opacity: .7;
  filter: brightness(0) invert(.9);
}
.review-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
}

.reviews-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.reviews-rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.reviews-rating-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  font-family: var(--font-display);
}
.reviews-stars-big {
  color: #f4b400;
  font-size: 1.4rem;
  letter-spacing: .1em;
}
.reviews-rating-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.reviews-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.reviews-cta-block p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-image-frame img { height: 400px; }
  .location-wrapper { grid-template-columns: 1fr; }
  .map-container { min-height: 320px; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 62px; }

  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-subtitle { font-size: .95rem; }

  /* --- NAVBAR --- */
  .nav-inner { padding: .6rem 1.25rem; }
  .navbar-logo { height: 60px; }
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    /* sit exactly at navbar bottom - measured dynamically by JS, fallback to var */
    top: var(--navbar-h);
    left: 0; right: 0;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    gap: 0;
    padding: .5rem 0 1.25rem;
    transform: translateY(calc(-100% - var(--navbar-h)));
    transition: transform var(--transition);
    align-items: flex-start;
    max-height: calc(100dvh - var(--navbar-h));
    overflow-y: auto;
    /* ensure it sits OVER all page content but under nothing */
    z-index: 999;
    /* shadow to separate from page */
    box-shadow: 0 8px 32px rgba(0,0,0,.7);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: .9rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
  }
  .nav-links li a::after { display: none; }
  .nav-cta {
    margin: .75rem 1.5rem 0;
    display: block;
    text-align: center;
    width: calc(100% - 3rem);
    border-radius: 50px !important;
  }

  /* --- HERO --- */
  .hero-content { padding: 1.5rem 1.25rem 4rem; }
  .hero-logo { height: 100px; margin-bottom: 1.25rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-subtitle { font-size: .95rem; margin-bottom: 2rem; }
  .hero-ctas { gap: .75rem; }
  .hero-scroll { bottom: 1.25rem; }

  /* --- STATS --- */
  .stat-divider { display: none; }
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    padding: 0 1rem;
  }
  .stat {
    padding: 1rem;
    min-width: unset;
    flex: unset;
    background: var(--bg-panel);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    justify-content: flex-start;
    gap: .75rem;
  }
  .stat > i { font-size: 1.4rem; }
  .stat strong { font-size: 1.1rem; }

  /* --- SERVICES --- */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-category { padding: 1.25rem; }
  .services-cta { padding: 1.75rem 1.25rem; }

  /* --- SOBRE --- */
  .sobre-image-frame img {
    height: 420px;
    object-position: center 20%;
  }
  .sobre-badge-float {
    right: 0;
    bottom: -1rem;
    font-size: .78rem;
    padding: .7rem 1rem;
  }
  .sobre-features { grid-template-columns: 1fr; }
  .sobre-inner { gap: 3rem; }

  /* --- LOCATION --- */
  .location-wrapper { min-height: auto; gap: 1.5rem; }
  .map-container { min-height: 280px; }
  .map-container iframe { min-height: 280px; }

  /* --- REVIEWS --- */
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .reviews-summary {
    padding: 2rem 1.25rem;
    gap: 1.75rem;
    flex-direction: column;
  }
  .reviews-rating-number { font-size: 2.8rem; }
  .reviews-cta-block { width: 100%; }
  .reviews-cta-block .btn { width: 100%; justify-content: center; }

  /* --- CONTACT --- */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .contact-card { padding: 1.5rem 1rem; }

  /* --- FOOTER --- */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-logo { margin: 0 auto .75rem; }
  .footer-socials { justify-content: center; }
  .footer-contact p { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --navbar-h: 58px; }

  .hero-logo { height: 84px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; justify-content: center; }

  /* Stats in single column on very small screens */
  .stats-inner { grid-template-columns: 1fr 1fr; }

  /* Contact grid single column */
  .contact-grid { grid-template-columns: 1fr; }

  /* Reviews summary tighter */
  .reviews-summary { padding: 1.5rem 1rem; }

  /* Location */
  .location-wrapper { min-height: auto; }
  .map-container { min-height: 240px; }
  .map-container iframe { min-height: 240px; }

  /* Whatsapp float smaller on tiny screens */
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 1.25rem; right: 1.25rem; }

  /* Section padding tighter */
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
}