/* Ótica Vieira — OnePage (refino editorial) */
:root {
  --navy: #0a1628;
  --navy-mid: #111f36;
  --navy-light: #243a5c;
  --gold: #b8975e;
  --gold-light: #d8c4a1;
  --bg: #050a12;
  --surface: #0b162a;
  --surface-2: #0f1d36;
  --cream: #050a12;
  --mist: #0b162a;
  --white: #ffffff;
  --text: #f3f1ea;
  --text-muted: rgba(243, 241, 234, 0.72);
  --radius: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.22);
  /* Tipografia: Sora (títulos) + Helvetica (texto) */
  --font-serif: "Sora", system-ui, sans-serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: rgba(216, 196, 161, 0.92);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 10, 18, 0.78);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid rgba(216, 196, 161, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

.nav-desktop a {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(243, 241, 234, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-desktop a:hover {
  color: var(--navy-light);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--gold {
  background: linear-gradient(135deg, #c9a86a 0%, var(--gold) 50%, #a67f4a 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(184, 151, 94, 0.35);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #c9a86a 100%);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(184, 151, 94, 0.4);
}

.btn--outline {
  background: transparent;
  color: rgba(243, 241, 234, 0.92);
  border: 1px solid rgba(216, 196, 161, 0.32);
}

.btn--outline:hover {
  background: rgba(216, 196, 161, 0.12);
  color: var(--white);
  border-color: rgba(216, 196, 161, 0.45);
}

.btn--ghost {
  background: transparent;
  color: rgba(243, 241, 234, 0.92);
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(216, 196, 161, 0.22);
}

.btn--ghost:hover {
  background: rgba(216, 196, 161, 0.08);
  box-shadow: inset 0 0 0 1px rgba(216, 196, 161, 0.32);
}

.btn--nav {
  display: none;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: rgba(243, 241, 234, 0.9);
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(216, 196, 161, 0.12);
}

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

.nav-mobile a {
  padding: 0.75rem 0;
  font-weight: 600;
  color: rgba(243, 241, 234, 0.9);
  border-bottom: 1px solid rgba(216, 196, 161, 0.12);
}

.nav-mobile .btn {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }

  .btn--nav {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  background: radial-gradient(ellipse 90% 70% at 80% 20%, rgba(184, 151, 94, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(36, 58, 92, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(15, 29, 54, 0.8) 0%, var(--bg) 100%);
  padding-bottom: 0;
}

.hero__deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 22, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 40, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 20%, transparent 70%);
  opacity: 0.5;
}

.hero__grid {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 2.1rem 1.5rem 3.1rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    padding: 2.35rem 1.5rem 3.65rem;
    gap: clamp(1.75rem, 4vw, 3.25rem);
    align-items: center;
  }
}

.hero__copy {
  padding-top: 0;
}

@media (min-width: 900px) {
  .hero__copy {
    padding-top: 0.35rem;
  }
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--text);
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 31rem;
  margin: 0 0 1.65rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.hero__visual-wrap {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: min(100%, 440px);
}

@media (min-width: 900px) {
  .hero__visual-wrap {
    justify-self: end;
    max-width: min(48vw, 520px);
  }
}

.hero__frame {
  position: absolute;
  inset: -10px 10px 10px -10px;
  border: 1px solid rgba(184, 151, 94, 0.45);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 0;
}

.hero__visual {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: min(62vh, 580px);
}

@media (min-width: 900px) {
  .hero__visual {
    max-height: min(70vh, 640px);
  }
}

.hero__visual img {
  display: block;
  width: 100%;
  height: min(62vh, 580px);
  max-height: min(62vh, 580px);
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.8s var(--ease);
}

@media (min-width: 900px) {
  .hero__visual img {
    height: min(70vh, 640px);
    max-height: min(70vh, 640px);
  }
}

.hero__visual-wrap:hover .hero__visual img {
  transform: scale(1.04);
}

.hero__badge {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 22rem;
  margin: 0;
  padding: 0.7rem 1.25rem;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.2vw, 1.125rem);
  font-style: normal;
  text-align: center;
  line-height: 1.35;
  border-radius: 999px;
  border: 1px solid rgba(212, 196, 161, 0.25);
  box-shadow: 0 10px 32px rgba(10, 22, 40, 0.22);
}

/* Section common */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
}

.section--navy {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  background: radial-gradient(ellipse 100% 80% at 10% 0%, rgba(201, 168, 106, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(36, 58, 92, 0.5) 0%, transparent 45%),
    linear-gradient(168deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.section--white {
  background: var(--surface);
}

.section--mist {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
}

.section--brands {
  border-top: 1px solid rgba(216, 196, 161, 0.12);
  border-bottom: 1px solid rgba(216, 196, 161, 0.12);
}

.section-head {
  max-width: 44rem;
  margin-bottom: 2.75rem;
}

.section-head .section__intro {
  margin-top: 1rem;
}

.section-head--light {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--light .section__intro {
  margin-left: auto;
  margin-right: auto;
}

.section__intro--wide {
  max-width: 38rem;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section--navy .section__label {
  color: var(--gold-light);
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section--navy h2 {
  color: var(--white);
}

.section__intro {
  max-width: 40rem;
  color: var(--text-muted);
  margin: 0;
  font-size: 1.02rem;
  font-weight: 400;
}

.section--navy .section__intro {
  color: rgba(255, 255, 255, 0.75);
}

/* Differentials */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card--minimal {
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 196, 161, 0.14);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.card--minimal:hover {
  border-color: rgba(184, 151, 94, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 241, 234, 0.92);
  border-radius: 14px;
  margin-bottom: 1.35rem;
  background: linear-gradient(145deg, rgba(184, 151, 94, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(216, 196, 161, 0.14);
}

.card__icon svg {
  opacity: 0.9;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Brands */
.brands-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .brands-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1100px) {
  .brands-showcase {
    gap: 1.15rem;
  }
}

.brand-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 1.15rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 196, 161, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.brand-tile:hover {
  border-color: rgba(184, 151, 94, 0.4);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.brand-tile__text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(243, 241, 234, 0.92);
  text-align: center;
  line-height: 1.25;
  transition: color 0.3s var(--ease);
}

.brand-tile:hover .brand-tile__text {
  color: var(--gold-light);
}

.brand-logo {
  width: min(200px, 78%);
  height: 48px;
  object-fit: contain;
  filter: invert(1) brightness(1.1);
  opacity: 0.9;
  transform: scale(var(--logo-scale, 1));
  transform-origin: center;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.brand-tile:hover .brand-logo {
  opacity: 1;
  transform: translateY(-1px) scale(var(--logo-scale, 1));
  filter: invert(1) brightness(1.2);
}

/* Services grid */
.services-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .services-bento {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  border-color: rgba(212, 196, 161, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-card--accent {
  border-color: rgba(201, 168, 106, 0.35);
}

.service-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .service-card__media {
    aspect-ratio: 4/5;
  }
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0) 0%,
    rgba(10, 22, 40, 0.45) 42%,
    rgba(10, 22, 40, 0.92) 100%
  );
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin: 0 0 0.4rem;
  color: var(--white);
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 26rem;
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Story */
.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.story__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story__accent {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 38%;
  height: 38%;
  background: linear-gradient(135deg, rgba(184, 151, 94, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.story__visual img {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.story__actions {
  margin-top: 1.75rem;
}

.story__text blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.45;
  color: rgba(243, 241, 234, 0.92);
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}

.story__text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.story__text p:last-child {
  margin-bottom: 0;
}

/* Atendimento */
.attend-bento {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .attend-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

.attend-bento__item {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.65rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 196, 161, 0.14);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.attend-bento__item:hover {
  border-color: rgba(184, 151, 94, 0.3);
  transform: translateY(-2px);
}

.attend-bento__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 241, 234, 0.92);
  border-radius: 12px;
  background: rgba(184, 151, 94, 0.12);
  border: 1px solid rgba(216, 196, 161, 0.14);
}

.attend-bento__item strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.attend-bento__item span:last-child {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Quote banner */
.quote-banner {
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
  background: linear-gradient(120deg, var(--navy) 0%, #0d1f38 45%, #152a45 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201, 168, 106, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.quote-banner__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(212, 196, 161, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.quote-banner p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

/* Contact */
.section-contact {
  background: radial-gradient(ellipse 70% 60% at 20% 10%, rgba(184, 151, 94, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
}

.section-contact__inner {
  max-width: 1040px;
}

.section-head--contact {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  text-align: center;
}

.section-head--contact .section__label {
  justify-content: center;
}

.section-head--contact .section__intro {
  margin-left: auto;
  margin-right: auto;
}

.contact-hours-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 196, 161, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-hours-bar__lead {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-hours-bar__icon {
  display: flex;
  color: var(--gold);
}

.contact-hours-bar__label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.contact-hours-bar__slots {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem 0;
  width: 100%;
}

@media (max-width: 599px) {
  .contact-hours-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-hours-bar__slots {
    flex-direction: column;
    gap: 0;
  }

  .contact-hours-bar__slot {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  }

  .contact-hours-bar__slot:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact-hours-bar__slot:first-child {
    padding-top: 0;
  }
}

@media (min-width: 600px) {
  .contact-hours-bar__slots {
    width: auto;
    gap: 0 2rem;
  }

  .contact-hours-bar__slot {
    padding-left: 2rem;
    border-left: 1px solid rgba(10, 22, 40, 0.1);
  }

  .contact-hours-bar__slot:first-of-type {
    padding-left: 0;
    border-left: none;
  }
}

.contact-hours-bar__slot {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 9.5rem;
}

.contact-hours-bar__days {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-hours-bar__time {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact-stores {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-stores {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.contact-box {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.85rem 1.65rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 196, 161, 0.14);
}

.contact-box--store {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-store__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(184, 151, 94, 0.4);
}

.contact-store__address {
  font-style: normal;
  color: var(--text);
  margin: 0 0 1.35rem;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.88;
}

.contact-store__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-store__list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-store__k {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-store__list a {
  color: rgba(243, 241, 234, 0.92);
  font-weight: 600;
}

.contact-store__list a:hover {
  color: var(--gold-light);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.contact-actions .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-actions .btn {
    flex: 1;
    min-width: 8rem;
  }
}

/* Avaliações Google */
.google-review {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.google-review__stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin: 0 0 1rem;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1;
}

.google-review__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.google-review h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.google-review__text {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.google-review .btn {
  min-width: 220px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 520px) and (max-width: 899px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  margin: 0;
  text-align: left;
}

.footer-credit {
  margin: 0;
  text-align: right;
}

@media (max-width: 719px) {
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .footer-credit {
    align-self: flex-end;
    text-align: right;
  }
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--gold-light);
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease,
    border-color 0.25s ease;
}

.footer-ig:hover {
  color: var(--white);
  background: linear-gradient(
    135deg,
    #f58529 0%,
    #dd2a7b 45%,
    #8134af 75%,
    #515bd4 100%
  );
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-ig__icon {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-col__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease,
    border-color 0.25s ease;
}

.footer-fb:hover {
  color: var(--white);
  background: #1877f2;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-fb__icon {
  width: 22px;
  height: 22px;
  display: block;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
