/* ============================================================
   Okay Óculos — styles.css (reconstruído)
   Paleta e medidas ajustáveis nas variáveis abaixo.
   ============================================================ */
:root {
  --ink:        #141414;   /* preto da marca */
  --ink-soft:   #2a2a2a;
  --paper:      #faf8f4;   /* off-white quente */
  --paper-dim:  #f0ece4;
  --accent:     #a4502f;   /* terracota — seções de destaque */
  --accent-dark:#8a3f22;
  --line:       rgba(20,20,20,.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, 'Segoe UI', sans-serif;
  --header-h: 72px;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 1rem;
}

/* ---------- Botões ---------- */
.btn-primary, .btn-ghost, .btn-light, .btn-whatsapp, .btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn-instagram {
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn-instagram:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: rgba(250,248,244,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.logo-img { height: 46px; width: auto; mix-blend-mode: multiply; }
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  opacity: .85;
  transition: opacity .2s;
}
.main-nav a:hover { opacity: 1; }
.main-nav .nav-cta {
  background: var(--ink);
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  opacity: 1;
}
.main-nav .nav-cta:hover { background: var(--accent); }
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px; height: 42px;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px; width: 24px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform .25s ease;
}
.menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,.78) 15%, rgba(10,10,10,.35) 60%, rgba(10,10,10,.15));
}
.hero-deco-circle {
  position: absolute;
  right: -12vw; top: 18%;
  width: 44vw; height: 44vw;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 3rem) clamp(1.2rem, 6vw, 6rem) 5rem;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  line-height: 1.03;
  margin-bottom: 1.4rem;
}
.hero-title em { color: #fff; }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  opacity: .9;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll-hint {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  font-size: 1.3rem;
  opacity: .7;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-strip {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: .85rem 0;
}
.ticker-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}
.ticker-track .sep { opacity: .5; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   PRODUTOS (features alternadas)
   ============================================================ */
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.2rem, 4vw, 3rem);
}
.product-feature__img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.product-feature__img-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(20,20,20,.45);
}
.product-feature__num {
  position: absolute;
  left: -0.4em; bottom: -0.45em;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20,20,20,.35);
  line-height: 1;
  pointer-events: none;
}
.product-feature__num--right { left: auto; right: -0.4em; }
.product-feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.product-feature__title em { color: var(--accent); }
.product-feature__body {
  max-width: 46ch;
  opacity: .8;
  margin-bottom: 1.8rem;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais { background: var(--paper-dim); }
.diferenciais__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.2rem, 4vw, 3rem);
}
.diferenciais__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
}
.diferenciais__headline em { color: var(--accent); }
.diferenciais__sub { margin-top: 1rem; opacity: .7; }
.diferenciais__list-col {
  display: flex;
  flex-direction: column;
}
.diferenciais__item {
  display: flex;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.diferenciais__item:first-child { padding-top: .4rem; }
.diferenciais__n {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 2.2rem;
}
.diferenciais__name { font-size: 1.08rem; margin-bottom: .3rem; }
.diferenciais__desc { font-size: .95rem; opacity: .75; max-width: 52ch; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  position: relative;
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3rem) clamp(7rem, 12vw, 10rem);
}
.manifesto__ghost {
  position: absolute;
  top: -0.18em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(9rem, 26vw, 22rem);
  color: rgba(255,255,255,.07);
  letter-spacing: .04em;
  pointer-events: none;
  user-select: none;
}
.manifesto__content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.manifesto__tag {
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 1.4rem;
}
.manifesto__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 2rem;
}
.manifesto__body { opacity: .92; margin-bottom: 1.2rem; }
.manifesto__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  margin: 2rem 0 2.4rem;
}
.manifesto__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}
.manifesto__wave svg { width: 100%; height: 64px; display: block; }

/* ============================================================
   GALLERY — Looks da semana (fundo escuro, continua do wave)
   ============================================================ */
.gallery-section {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.2rem, 4vw, 3rem);
}
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header, .lookbook__header, .video-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.gallery-title, .lookbook__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.gallery-ig-link {
  font-size: .92rem;
  font-weight: 600;
  opacity: .8;
  transition: opacity .2s;
}
.gallery-ig-link:hover { opacity: 1; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, minmax(180px, 32vw));
  gap: 14px;
}
.gallery-cell {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-cell:hover img { transform: scale(1.04); }
.gc-main   { grid-row: 1 / 3; }

/* ============================================================
   VÍDEOS
   ============================================================ */
.video-section {
  background: var(--ink);
  color: var(--paper);
  padding: 0 clamp(1.2rem, 4vw, 3rem) clamp(3.5rem, 8vw, 6.5rem);
}
.video-inner { max-width: 1200px; margin: 0 auto; }
.video-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.video-title em { color: var(--accent); }
.vc-carousel, .lookbook__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.vc-viewport, .lk-viewport { overflow: hidden; flex: 1; }
.vc-track, .lk-track {
  display: flex;
  gap: 12px;
  transition: transform .45s ease;
}
.vc-slide {
  flex: 0 0 calc((100% - 24px) / 3);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.vc-slide iframe { width: 100%; height: 100%; border: 0; }
.vc-arrow, .lk-arrow {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  background: transparent;
  color: currentColor;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.vc-arrow:hover, .lk-arrow:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

/* ============================================================
   LOOKBOOK — Nossos modelos (fundo claro)
   ============================================================ */
.lookbook {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.2rem, 4vw, 3rem);
}
.lookbook__inner { max-width: 1200px; margin: 0 auto; }
.lookbook .gallery-ig-link { opacity: .7; }
.lookbook .lk-arrow {
  border-color: rgba(20,20,20,.25);
  color: var(--ink);
}
.lookbook .lk-arrow:hover {
  background: rgba(20,20,20,.06);
  border-color: rgba(20,20,20,.6);
}
.lk-slide {
  position: relative;
  flex: 0 0 calc((100% - 24px) / 3);
  aspect-ratio: 4 / 4.8;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-dim);
}
.lk-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* imagens paisagem giradas pelo script para preencher em pé */
.lk-slide img.is-rotated {
  position: absolute;
  top: 50%; left: 50%;
  transform: rotate(90deg);
  transform-origin: center;
  object-fit: cover;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos { background: var(--paper-dim); }
.dep__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 4vw, 3rem);
}
.dep__header { margin-bottom: 2.4rem; }
.dep__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
}
.dep__title em { color: var(--accent); }
.dep__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.dep__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 10px 30px -18px rgba(20,20,20,.25);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.dep__card--featured {
  grid-row: 1 / 3;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  justify-content: center;
}
.dep__quote {
  position: absolute;
  top: .4rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .9;
}
.dep__card--featured .dep__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 2rem;
}
.dep__text { font-size: .97rem; opacity: .92; }
.dep__author { display: flex; align-items: center; gap: .9rem; }
.dep__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}
.dep__name { display: block; font-size: .95rem; }
.dep__city { font-size: .82rem; opacity: .65; }

/* ============================================================
   CONTATO
   ============================================================ */
.contact-section {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 8.5rem) clamp(1.2rem, 4vw, 3rem);
}
.contact-glow {
  position: absolute;
  left: 50%; top: -30%;
  transform: translateX(-50%);
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(164,80,47,.35), transparent 65%);
  pointer-events: none;
}
.contact-inner { position: relative; max-width: 640px; margin: 0 auto; }
.contact-eyebrow {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 1.2rem;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.06;
  margin-bottom: 1.2rem;
}
.contact-title em { color: var(--accent); filter: brightness(1.5); }
.contact-sub { opacity: .85; margin-bottom: 2.4rem; }
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 3rem 1.2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  text-align: center;
}
.footer-logo { height: 54px; width: auto; mix-blend-mode: multiply; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  opacity: .8;
}
.footer-links { display: flex; gap: 1.6rem; font-size: .92rem; font-weight: 500; }
.footer-links a { opacity: .75; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; }
.footer-copy { font-size: .8rem; opacity: .5; margin-top: .6rem; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .vc-slide, .lk-slide { flex-basis: calc((100% - 12px) / 2); }
  .diferenciais__inner { grid-template-columns: 1fr; }
  .dep__grid { grid-template-columns: 1fr 1fr; }
  .dep__card--featured { grid-row: auto; grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a {
    width: 100%;
    padding: 1rem clamp(1rem, 4vw, 3rem);
    border-top: 1px solid var(--line);
  }
  .main-nav .nav-cta {
    border-radius: 0;
    background: var(--ink);
    margin: 0;
  }
  .menu-toggle { display: flex; }

  .product-feature { grid-template-columns: 1fr; }
  .product-feature.rx .product-feature__text-col { order: 2; }
  .product-feature.rx .product-feature__img-col  { order: 1; }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gc-main { grid-row: auto; }
  .gallery-cell { aspect-ratio: 4 / 3; }
}

@media (max-width: 500px) {
  .vc-slide, .lk-slide { flex-basis: 100%; }
  .dep__grid { grid-template-columns: 1fr; }
  .dep__card--featured { grid-column: auto; }
  .vc-arrow, .lk-arrow { width: 38px; height: 38px; }
}
