/* ============================================
   CLANDESTINA BARBEARIA — V4 DARK DESIGN
   ============================================ */

:root {
  --bg-primary: #0F0F0F;
  --bg-secondary: #1A1A1A;
  --bg-elevated: #242424;
  --text-primary: #F5F5F5;
  --text-secondary: #999999;
  --accent: #C08A90;
  --accent-hover: #D4A0A7;
  --border: #242424;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
body.lang-pt .lang-en { display: none !important; }
body.lang-en .lang-pt { display: none !important; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-primary);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

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

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 6px;
  border-radius: 2px;
  transition: color 0.2s;
  color: var(--text-secondary);
}

.lang-btn.active {
  color: var(--accent);
}

.lang-separator {
  color: var(--border);
  font-size: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-primary);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.mobile-lang {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

/* ============================================
   HERO — HOMEPAGE
   ============================================ */
.hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../photos/photo2.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15,15,15,0.5), rgba(15,15,15,0.88));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 48px 24px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 8px 0 16px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  justify-content: center !important;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--accent);
  padding: 12px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shine 2.5s ease-in-out forwards;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 150%; }
}

.trust-bar p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg-primary);
  letter-spacing: 0.05em;
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
  padding: 56px 0;
}

.section-intro {
  max-width: 600px;
  color: var(--text-secondary);
  margin: 12px auto 40px auto;
  text-align: center;
  border-left: none;
  padding-left: 0;
  box-shadow: none;
}

/* ============================================
   SERVICES PREVIEW — HOMEPAGE
   ============================================ */
.services-preview {
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 24px;
  align-items: start;
}

.service-featured {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}

.service-featured .section-label {
  margin-bottom: 8px;
}

.service-featured h2 {
  margin-bottom: 8px;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  border-radius: 2px;
  transition: background 0.2s;
  cursor: pointer;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
}

.service-row:first-child {
  border-top: 1px solid var(--border);
}

.service-row:hover {
  background: var(--bg-elevated);
}

.service-row:hover .service-row-name {
  text-decoration: underline;
  text-decoration-color: var(--accent);
}

.service-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-row-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.service-row-name {
  font-weight: 500;
  font-size: 0.9375rem;
  transition: text-decoration 0.2s;
}

.service-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.service-row-duration {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.service-row-price {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================
   WHY CLANDESTINA
   ============================================ */
.why-section {
  background: var(--bg-secondary);
}

.why-panels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-panel {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.why-panel:last-child {
  border-bottom: none;
}

.why-panel-img {
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.why-panel-text h3 {
  margin-bottom: 10px;
}

.why-panel-text p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.why-panel-accent {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 16px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  background: var(--bg-primary);
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.rating-big {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.rating-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  display: flex;
  gap: 4px;
}

.star-icon {
  color: var(--accent);
}

.rating-count {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.rating-bars {
  flex: 1;
  min-width: 200px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.rating-bar-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  width: 24px;
  flex-shrink: 0;
}

.rating-bar-track {
  flex: 1;
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.rating-bar-count {
  font-size: 0.75rem;
  color: var(--text-secondary);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.review-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
}

.review-card.featured {
  grid-column: 1 / -1;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}

.review-author {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.reviews-link {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.reviews-link:hover {
  color: var(--accent-hover);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--bg-secondary);
  text-align: center;
  padding: 48px 0;
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO STRIP (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 30vh;
  min-height: 240px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15,15,15,0.6), rgba(15,15,15,0.85));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-featured-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
}

.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}

.service-card h3 {
  margin: 12px 0 8px;
}

.service-card .service-duration {
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-price {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.service-icon {
  color: var(--accent);
}

/* ============================================
   SOBRE PAGE
   ============================================ */
.sobre-body {
  background: var(--bg-primary);
  padding: 64px 0;
}

.sobre-text {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 0 48px;
  border-left: 3px solid var(--accent);
  box-shadow: -8px 0 40px rgba(192, 138, 144, 0.15);
  position: relative;
}

/* LED mirror glow strip — subtle rose light bleeding from the left border */
.sobre-text::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(192, 138, 144, 0.6),
              0 0 60px rgba(192, 138, 144, 0.2),
              0 0 100px rgba(192, 138, 144, 0.1);
}

.sobre-text p {
  color: #CCCCCC;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

/* First paragraph gets extra prominence */
.sobre-text p:first-of-type {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 300;
}

.sobre-text p strong {
  color: var(--text-primary);
}

.sobre-text .sign {
  color: var(--accent);
  font-weight: 600;
  margin-top: 40px;
  font-size: 1.1rem;
  text-shadow: 0 0 30px rgba(192, 138, 144, 0.4);
}

.sobre-image-break {
  width: calc(100% + 48px);
  margin-left: -48px;
  max-height: 400px;
  object-fit: cover;
  margin-top: 40px;
  margin-bottom: 40px;
  border-left: 3px solid var(--accent);
  box-shadow: 0 0 30px rgba(192, 138, 144, 0.15);
}

.staff-badges {
  background: var(--bg-secondary);
  padding: 48px 0;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.staff-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.staff-card:hover {
  border-top-color: var(--accent-hover);
  box-shadow: 0 0 25px rgba(192, 138, 144, 0.2),
              0 4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.staff-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.staff-handle {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 12px;
  text-shadow: 0 0 15px rgba(192, 138, 144, 0.3);
}

.staff-quote {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews-page-content {
  background: var(--bg-primary);
  padding: 56px 0;
}

.reviews-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 600px;
}

.theme-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.theme-chip {
  background: rgba(192, 138, 144, 0.1);
  border: 1px solid rgba(192, 138, 144, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.all-reviews {
  display: flex;
  flex-direction: column;
}

.review-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.review-item:first-child {
  border-top: 1px solid var(--border);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.review-item-stars {
  display: flex;
  gap: 3px;
}

.review-item-author {
  font-weight: 600;
  font-size: 0.9375rem;
}

.review-item-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-left: auto;
}

.lang-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 2px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
}

.review-item-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.owner-response {
  margin-top: 12px;
  margin-left: 24px;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border-left: 2px solid var(--accent);
  border-radius: 0 2px 2px 0;
}

.owner-response-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.owner-response-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
  background: var(--bg-primary);
  padding: 56px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info {
  position: relative;
}

/* Hours table — no border-left, use pseudo-element for the line instead */
.hours-table {
  position: relative;
}

/* Hours table — no extra pseudo-element line (card border-left handles it) */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-item-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(192, 138, 144, 0.4));
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.contact-item-value a {
  color: var(--text-primary);
  transition: color 0.2s;
}

.contact-item-value a:hover {
  color: var(--accent);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.875rem;
}

.hours-table td:first-child {
  color: var(--text-secondary);
  width: 120px;
}

.hours-table td:last-child {
  color: var(--text-primary);
}

.hours-table .closed {
  color: var(--text-secondary);
}

.map-wrapper {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--accent);
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #080808;
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand .site-logo {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  display: block;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icon {
  color: var(--text-secondary);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: var(--accent);
}

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

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================
   FADE-IN ANIMATIONS (IntersectionObserver)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 280px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 32px 20px;
    margin-left: 0;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card.featured {
    grid-column: auto;
  }

  .why-panel {
    flex-direction: column;
    gap: 20px;
  }

  .why-panel-img {
    width: 100%;
    height: 200px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .rating-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-bars {
    width: 100%;
  }

  section {
    padding: 40px 0;
  }

  .page-hero {
    min-height: 180px;
  }

  .services-featured-block {
    padding: 24px;
  }

  .sobre-text {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.75rem;
  }
}

/* ============================================
   LED MIRROR GLOW EFFECTS
   Inspired by the actual rose-backlit mirrors
   in Barbearia Clandestina's interior.
   Rose on dark = GLOW, not flat color.
   ============================================ */

/* Trust bar — the confident rose stripe now radiates */
.trust-bar {
  box-shadow: 0 4px 40px rgba(192, 138, 144, 0.4),
              0 1px 15px rgba(192, 138, 144, 0.25);
}

/* Primary buttons pulse with rose light on hover */
.btn-primary {
  box-shadow: 0 2px 10px rgba(192, 138, 144, 0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(192, 138, 144, 0.5),
              0 4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Outline buttons catch the glow when activated */
.btn-outline:hover {
  box-shadow: 0 0 25px rgba(192, 138, 144, 0.35);
  transform: translateY(-2px);
}

/* Section labels (WHISPERED DEALS, service labels) radiate */
.hero .section-label,
.section-label {
  text-shadow: 0 0 40px rgba(192, 138, 144, 0.5),
               0 0 80px rgba(192, 138, 144, 0.2);
}

/* Star icons glow like the LED strip */
.star-icon {
  filter: drop-shadow(0 0 6px rgba(192, 138, 144, 0.6));
}

.review-stars .star-icon {
  filter: drop-shadow(0 0 4px rgba(192, 138, 144, 0.5));
}

/* Rating bar fills glow */
.rating-bar-fill {
  box-shadow: 0 0 8px rgba(192, 138, 144, 0.4);
}

/* Theme chips light up on hover */
.theme-chip {
  transition: all 0.25s ease;
}

.theme-chip:hover {
  box-shadow: 0 0 20px rgba(192, 138, 144, 0.35);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Accent divider lines glow subtly */
.why-panel-accent,
.accent-line {
  box-shadow: 0 0 12px rgba(192, 138, 144, 0.3);
}

/* Footer tagline gets ethereal glow */
.footer-tagline {
  text-shadow: 0 0 30px rgba(192, 138, 144, 0.4);
}

/* Featured service card gets a subtle rose border glow */
.service-featured {
  box-shadow: 0 0 20px rgba(192, 138, 144, 0.15),
              0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Active nav link underline glows */
.nav-link.active::after,
.nav-link:hover::after {
  box-shadow: 0 0 8px rgba(192, 138, 144, 0.5);
}

/* Contact page phone/whatsapp links glow on hover */
.contact-link:hover svg,
.contact-link:hover {
  filter: drop-shadow(0 0 8px rgba(192, 138, 144, 0.4));
}

/* Map container gets rose border glow */
.map-container {
  box-shadow: 0 0 20px rgba(192, 138, 144, 0.2);
}

/* Review cards get subtle elevation glow on hover */
.review-item:hover {
  box-shadow: 0 0 15px rgba(192, 138, 144, 0.1);
  background: var(--bg-elevated);
}

/* The overall accent color gets a glow utility class */
.glow-accent {
  box-shadow: 0 0 20px rgba(192, 138, 144, 0.3);
}

.glow-text {
  text-shadow: 0 0 30px rgba(192, 138, 144, 0.4);
}

/* Prices — rose, bold, glowing */
.service-price {
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  text-shadow: 0 0 15px rgba(192, 138, 144, 0.4);
}

/* Service cards — center everything */
.service-card {
  text-align: center !important;
}

.service-card h3 {
  text-align: center !important;
}

.service-card .service-icon {
  display: flex;
  justify-content: center;
}

.service-card .service-duration {
  justify-content: center;
}

.service-card .service-price {
  display: block;
  text-align: center;
}

/* Featured service — center */
.services-featured-block {
  text-align: center !important;
}

.services-featured-block .section-label {
  display: block;
  text-align: center;
}

.services-featured-block h2 {
  text-align: center;
}

.services-featured-block .service-desc {
  margin-left: auto;
  margin-right: auto;
}

.services-featured-block > div {
  justify-content: center;
}

/* ============================================
   UNIVERSAL LED LEFT-BORDER TREATMENT
   Applied to all content tiles, cards, panels,
   and text blocks across every page.
   Mimics the rose-backlit mirror frame edge.
   ============================================ */

/* Service cards — both featured and regular */
.service-featured,
.service-item {
  border-left: 3px solid var(--accent) !important;
  box-shadow: -6px 0 25px rgba(192, 138, 144, 0.12),
              0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

/* Why Choose Us panels */
.why-panel {
  border-left: 3px solid var(--accent) !important;
  box-shadow: -6px 0 25px rgba(192, 138, 144, 0.1);
  padding-left: 24px !important;
}

/* Review cards (homepage) */
.review-card {
  border-left: 3px solid var(--accent) !important;
  box-shadow: -6px 0 25px rgba(192, 138, 144, 0.1),
              0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.review-card.featured {
  border-left-width: 4px !important;
  box-shadow: -8px 0 35px rgba(192, 138, 144, 0.18),
              0 2px 12px rgba(0, 0, 0, 0.3) !important;
}

/* Review items on the reviews page */
.review-item {
  border-left: 3px solid var(--accent) !important;
  padding-left: 20px !important;
  box-shadow: -6px 0 20px rgba(192, 138, 144, 0.08);
}

/* Contact info blocks */
.contact-info-block,
.contact-detail {
  border-left: 3px solid var(--accent) !important;
  padding-left: 16px !important;
  box-shadow: -5px 0 20px rgba(192, 138, 144, 0.1);
}

/* Map container */
.map-container,
.map-wrapper {
  border-left: 3px solid var(--accent) !important;
  box-shadow: -6px 0 25px rgba(192, 138, 144, 0.12),
              0 0 20px rgba(192, 138, 144, 0.08) !important;
}

/* Hours table rows */
.hours-row,
.hour-item {
  border-left: 2px solid rgba(192, 138, 144, 0.3);
  padding-left: 12px;
}

/* CTA section */
.cta-section {
  border-left: 4px solid var(--accent);
  box-shadow: -8px 0 30px rgba(192, 138, 144, 0.12);
}

/* Theme chips container */
.theme-chips {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  box-shadow: -5px 0 20px rgba(192, 138, 144, 0.1);
}

/* Services page — service blocks */
.service-block,
.service-detail {
  border-left: 3px solid var(--accent) !important;
  padding-left: 20px !important;
  box-shadow: -6px 0 25px rgba(192, 138, 144, 0.1);
}

/* Rating block on reviews page */
.rating-block {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  box-shadow: -8px 0 30px rgba(192, 138, 144, 0.15);
}

/* Footer sections */
.footer-col,
.footer-section {
  border-left: 2px solid rgba(192, 138, 144, 0.2);
  padding-left: 16px;
}

/* First footer column — no border (it's the brand column) */
.footer-col:first-child,
.footer-section:first-child {
  border-left: none;
  padding-left: 0;
}

/* Owner response on reviews page */
.owner-response {
  border-left: 3px solid var(--accent) !important;
  box-shadow: -5px 0 20px rgba(192, 138, 144, 0.12);
}

/* Section intro text blocks */
.section-intro,
.intro-text {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  box-shadow: -6px 0 25px rgba(192, 138, 144, 0.1);
}
