/* ============================================================
   DIAS BARBEARIA — style.css
   Paleta: Preto #0a0a0a | Dourado #C9A84C | Branco #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --preto:    #0a0a0a;
  --preto2:   #111111;
  --preto3:   #1a1a1a;
  --dourado:  #C9A84C;
  --dourado2: #e8c96a;
  --branco:   #FFFFFF;
  --cinza:    #888888;
  --cinza2:   #2a2a2a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--preto);
  color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--cinza);
  max-width: 540px;
}

/* ---------- Utilitários ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--dourado);
  margin-bottom: 1.5rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

.navbar-logo img {
  height: 60px;
  width: auto;
}

.navbar-nav {
  display: flex;
  gap: 2.5rem;
}

.navbar-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--branco);
  position: relative;
  transition: color 0.3s;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--dourado);
  transition: width 0.3s;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--dourado);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

/* Tablet/Mobile — botões sempre visíveis */
@media (max-width: 900px) {
  .navbar-nav { 
    gap: 1.5rem;
  }
  
  .navbar-nav a {
    font-size: 0.75rem;
  }
  
  .navbar-cta {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
  
  .hamburger { display: none; }
}

/* Tela muito pequena — menu compacto */
@media (max-width: 480px) {
  .navbar { padding: 0.6rem 0.8rem; }
  .navbar-logo img { height: 35px; }
  
  .navbar-nav { 
    gap: 0.3rem;
  }
  
  .navbar-nav a {
    font-size: 0.5rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  
  .navbar-cta {
    padding: 0.3rem 0.4rem;
    font-size: 0.42rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}

/* Tela extra pequena — menu ultraleve */
@media (max-width: 360px) {
  .navbar { padding: 0.5rem 0.6rem; }
  .navbar-logo img { height: 30px; }
  
  .navbar-nav { 
    gap: 0.2rem;
  }
  
  .navbar-nav a {
    font-size: 0.45rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  
  .navbar-cta {
    padding: 0.25rem 0.35rem;
    font-size: 0.38rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
}

.navbar-cta {
  background: var(--dourado);
  color: var(--preto) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: background 0.3s !important;
}

.navbar-cta::after { display: none !important; }

.navbar-cta:hover {
  background: var(--dourado2) !important;
  color: var(--preto) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  transition: all 0.3s;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/IMG_7446.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 5rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--branco);
  margin-bottom: 1.4rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--dourado);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--dourado);
  color: var(--preto);
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--dourado2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--branco);
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--dourado);
  color: var(--dourado);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cinza);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--dourado), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- SEÇÃO SOBRE / ESPAÇO ---------- */
.sobre {
  padding: 7rem 0;
  background: var(--preto);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-imgs {
  position: relative;
  height: 560px;
}

.sobre-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  border-radius: 2px;
}

.sobre-img-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%;
  height: 56%;
  object-fit: cover;
  border: 3px solid var(--preto);
  border-radius: 2px;
}

.sobre-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dourado);
  color: var(--preto);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  border: 3px solid var(--preto);
  z-index: 2;
}

.sobre-badge small {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.sobre-text .section-subtitle {
  margin-bottom: 2.5rem;
}

.sobre-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.sobre-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.sobre-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  font-size: 1rem;
  border-radius: 2px;
}

.sobre-item-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.sobre-item-text span {
  font-size: 0.85rem;
  color: var(--cinza);
}

/* ---------- SEÇÃO DETALHE (foto máquina) ---------- */
.detalhe {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.detalhe-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/DSC06565.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.35);
}

.detalhe-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.detalhe-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--branco);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.detalhe-content h2 span { color: var(--dourado); }

/* ---------- SEÇÃO BARBEIROS ---------- */
.barbeiros {
  padding: 7rem 0;
  background: var(--preto2);
}

.barbeiros-header {
  text-align: center;
  margin-bottom: 4rem;
}

.barbeiros-header .section-subtitle {
  margin: 0 auto;
}

.barbeiros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.barbeiro-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.barbeiro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.3) 55%,
    transparent 100%
  );
  z-index: 1;
  transition: background 0.4s;
}

.barbeiro-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.98) 0%,
    rgba(10,10,10,0.6) 70%,
    rgba(10,10,10,0.2) 100%
  );
}

.barbeiro-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.barbeiro-card:hover img {
  transform: scale(1.04);
}

.barbeiro-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.8rem;
}

.barbeiro-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.4rem;
}

.barbeiro-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--branco);
}

.barbeiro-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.barbeiro-card:hover .barbeiro-detail {
  max-height: 80px;
  margin-top: 0.6rem;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--preto2);
  border-top: 1px solid var(--cinza2);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.83rem;
  color: var(--cinza);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cinza2);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--cinza);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--dourado); }

.footer-bottom {
  border-top: 1px solid var(--cinza2);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--cinza);
}

.footer-bottom span { color: var(--dourado); }

/* ---------- PÁGINA CONTATO ---------- */
.page-hero {
  height: 40vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--preto) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 3rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--branco);
}

.page-hero-content p {
  color: var(--cinza);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* Contato cards */
.contato-section {
  padding: 6rem 0;
  background: var(--preto);
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contato-card {
  background: var(--preto3);
  border: 1px solid var(--cinza2);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.contato-card:hover {
  border-color: var(--dourado);
  transform: translateY(-4px);
}

.contato-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 1.4rem;
  color: var(--dourado);
  transition: background 0.3s;
}

.contato-card:hover .contato-card-icon {
  background: rgba(201, 168, 76, 0.18);
}

.contato-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--branco);
}

.contato-card p {
  font-size: 0.85rem;
  color: var(--cinza);
  margin-bottom: 1.4rem;
}

.contato-card a.card-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dourado);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.contato-card a.card-link:hover {
  border-color: var(--dourado);
}

.contato-wpp-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 1px solid var(--cinza2);
  border-left: 3px solid var(--dourado);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contato-wpp-banner-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contato-wpp-banner-text p {
  font-size: 0.9rem;
  color: var(--cinza);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
}

.btn-whatsapp:hover {
  background: #1fba58;
  transform: translateY(-2px);
}

.horarios-section {
  padding: 4rem 0 6rem;
  background: var(--preto2);
}

.horarios-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.horarios-table th,
.horarios-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--cinza2);
  font-size: 0.9rem;
}

.horarios-table th {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 600;
}

.horarios-table td { color: var(--cinza); }

.horarios-table td:first-child {
  color: var(--branco);
  font-weight: 500;
}

.horarios-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ---------- PÁGINA LOCALIZAÇÃO ---------- */
.loc-section {
  padding: 5rem 0;
  background: var(--preto);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.loc-info { padding-top: 1rem; }

.loc-info .section-title { margin-bottom: 0.5rem; }

.loc-address-block {
  margin: 2rem 0;
  padding: 1.8rem;
  background: var(--preto3);
  border: 1px solid var(--cinza2);
  border-radius: 2px;
  border-left: 3px solid var(--dourado);
}

.loc-address-block p {
  font-size: 0.95rem;
  color: var(--cinza);
  line-height: 1.8;
}

.loc-address-block strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.5rem;
}

.loc-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.loc-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--cinza2);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--branco);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.loc-btn:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  background: rgba(201, 168, 76, 0.05);
}

.loc-btn svg { color: var(--dourado); flex-shrink: 0; }

.map-wrapper {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--cinza2);
  height: 500px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg);
}

/* ---------- TABLET (1024px - 768px) ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .sobre { padding: 5rem 0; }
  .barbeiros { padding: 5rem 0; }
  .detalhe { height: 340px; }
  .detalhe-content h2 { font-size: clamp(1.6rem, 3vw, 2.8rem); }
  .barbeiros-grid { gap: 1.5rem; }
  .footer-grid { gap: 2rem; }
}

/* ---------- TABLET PEQUENO (768px) ---------- */
@media (max-width: 768px) {
  .navbar { padding: 0.8rem 1.5rem; }
  .navbar-logo img { height: 45px; }
  .navbar-nav { gap: 1.8rem; }
  .navbar-nav a { font-size: 0.75rem; }
  
  .hero-content { padding: 0 1.5rem 4rem; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
  .hero-desc { font-size: 0.95rem; }
  
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; padding: 0 1.5rem; }
  .sobre-imgs { height: 300px; order: -1; }
  .sobre { padding: 4rem 0; }
  
  .barbeiros-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .barbeiro-card img { height: 320px; }
  
  .detalhe-content h2 { font-size: clamp(1.4rem, 2.5vw, 2.4rem); }
  
  .contato-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .contato-card { padding: 1.8rem 1.5rem; }
  
  .loc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-wrapper { height: 350px; }
  
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-logo { grid-column: 1 / -1; }
  
  .avaliacoes-wrap { gap: 1rem; }
  .avaliacao-card-img { max-width: 100%; min-width: auto; }
  
  .page-hero { height: 35vh; }
  .page-hero-content h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
}

/* ---------- MOBILE (480px) ---------- */
@media (max-width: 480px) {
  .navbar { padding: 0.8rem 1rem; }
  .navbar-logo img { height: 45px; }
  .hamburger { gap: 4px; }
  .hamburger span { width: 20px; height: 2px; }
  
  .container { padding: 0 1rem; max-width: 100%; }
  
  .hero { min-height: 500px; }
  .hero-content { padding: 0 1rem 3rem; }
  .hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.8rem; }
  .hero-eyebrow { font-size: 0.65rem; margin-bottom: 0.8rem; }
  .hero-desc { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .hero-actions { gap: 0.8rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { padding: 0.7rem 1.5rem; font-size: 0.75rem; }
  
  .hero-scroll { display: none; }
  
  .sobre { padding: 2.5rem 0; }
  .sobre-imgs { height: 240px; }
  .sobre-text .section-subtitle { margin-bottom: 1.5rem; }
  .sobre-items { gap: 1rem; }
  .sobre-item { gap: 0.8rem; }
  .sobre-item-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  
  .section-title { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
  .section-label { font-size: 0.65rem; margin-bottom: 0.5rem; }
  .gold-line { width: 36px; margin-bottom: 1rem; }
  
  .barbeiros { padding: 2.5rem 0; }
  .barbeiros-header { margin-bottom: 2rem; }
  .barbeiros-grid { grid-template-columns: 1fr; gap: 1.2rem; max-width: none; }
  .barbeiro-card img { height: 280px; }
  .barbeiro-info { padding: 1.2rem; }
  .barbeiro-role { font-size: 0.6rem; }
  .barbeiro-info h3 { font-size: 1.1rem; }
  
  .detalhe { height: 280px; }
  .detalhe-content h2 { font-size: clamp(1.2rem, 2vw, 2rem); margin-bottom: 1rem; }
  .detalhe-content .btn-primary { padding: 0.7rem 1.5rem; font-size: 0.75rem; }
  
  .contato-section { padding: 2.5rem 0; }
  .contato-grid { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
  .contato-card { padding: 1.5rem 1.2rem; border-radius: 4px; }
  .contato-card-icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 1rem; }
  .contato-card h3 { font-size: 0.95rem; }
  .contato-card p { font-size: 0.8rem; margin-bottom: 1rem; }
  .contato-card a.card-link { font-size: 0.75rem; }
  
  .contato-wpp-banner { padding: 1.5rem 1.2rem; gap: 1rem; }
  .contato-wpp-banner-text h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
  .contato-wpp-banner-text p { font-size: 0.8rem; }
  .btn-whatsapp { padding: 0.8rem 1.5rem; font-size: 0.8rem; gap: 0.5rem; }
  
  .horarios-section { padding: 2.5rem 0 3rem; }
  .horarios-table th,
  .horarios-table td { padding: 0.8rem 1rem; font-size: 0.8rem; }
  .horarios-table th { font-size: 0.65rem; }
  
  .page-hero { height: 30vh; min-height: 250px; }
  .page-hero-content { padding: 0 1rem 2rem; }
  .page-hero-content h1 { font-size: clamp(1.4rem, 3vw, 2.4rem); }
  .page-hero-content p { font-size: 0.85rem; }
  
  .loc-section { padding: 2.5rem 0; }
  .loc-address-block { margin: 1.5rem 0; padding: 1.2rem; }
  .loc-address-block p { font-size: 0.85rem; }
  .loc-btn { font-size: 0.8rem; padding: 0.8rem 1rem; }
  .map-wrapper { height: 280px; }
  
  .footer { padding: 2rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
  .footer-logo { grid-column: auto; }
  .footer-logo img { height: 50px; margin-bottom: 0.8rem; }
  .footer-logo p { font-size: 0.8rem; }
  .footer-col h4 { font-size: 0.9rem; margin-bottom: 0.8rem; }
  .footer-col ul li { margin-bottom: 0.5rem; }
  .footer-col ul li a { font-size: 0.8rem; }
  .footer-bottom { padding-top: 1rem; gap: 0.8rem; }
  .footer-bottom p { font-size: 0.75rem; }
  
  .avaliacoes-prints { padding: 2.5rem 0; }
  .avaliacoes-header { margin-bottom: 1.5rem; }
  .avaliacoes-wrap { gap: 0.8rem; }
  .avaliacao-card-img { max-width: 100%; min-width: auto; }
  .avaliacoes-cta { margin-top: 1rem; }
  .avaliacoes-cta .btn-primary { padding: 0.7rem 1.5rem; font-size: 0.8rem; }
}

/* ---------- MUITO PEQUENO (320px) ---------- */
@media (max-width: 360px) {
  .navbar-logo img { height: 40px; }
  .container { padding: 0 0.8rem; }
  .hero-content { padding: 0 0.8rem 2rem; }
  .hero h1 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
  .section-title { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
  .barbeiros-grid { gap: 0.8rem; }
  .barbeiro-card img { height: 240px; }
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Animações scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- AVALIAÇÕES (PRINTS) ---------- */
.avaliacoes-prints {
  padding: 4rem 0;
  background: var(--preto);
}

.avaliacoes-header { text-align: center; margin-bottom: 1.5rem; }

.avaliacoes-wrap { display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap; }

.avaliacao-card-img {
  width: 100%;
  max-width: 280px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--preto3);
  border: 1px solid var(--cinza2);
  display: block;
  flex: 1;
  min-width: 200px;
}

.avaliacao-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.avaliacoes-cta { text-align: center; margin-top: 1.25rem; }
.avaliacoes-cta .btn-primary { padding: 0.9rem 1.8rem; }

@media (max-width: 900px) {
  .avaliacao-card-img { max-width: 300px; }
}

@media (max-width: 420px) {
  .avaliacao-card-img { max-width: 100%; }
}}
