/* ============================================================
   uChi — site (uchi.com.br)
   Fontes, paleta da marca, base
   ============================================================ */

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --vinho: #6F3332;
  --vinho-deep: #5A2727;
  --laranja: #DB6015;
  --laranja-soft: #E07A3E;
  --verde: #1A3C34;
  --verde-soft: #2A5048;
  --amarelo: #F4B222;
  --oliva: #B8CD96;
  --vermelho-terra: #AD461E;
  --cinza: #A7A8A9;

  --creme: #F5EFE6;
  --creme-soft: #EFE7DA;
  --creme-deep: #E8DCC8;
  --tinta: #2B2421;
  --tinta-soft: #5C544D;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 64px);

  --t-eyebrow: 13px;
  --t-body: 17px;
  --t-lead: 21px;
  --t-h3: clamp(22px, 2.2vw, 30px);
  --t-h2: clamp(32px, 4.4vw, 64px);
  --t-h1: clamp(56px, 9.5vw, 160px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--creme);
  color: var(--tinta);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- LAYOUT ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TYPE UTIL ---------- */
.eyebrow {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vinho);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: var(--t-h1); line-height: 0.92; letter-spacing: -0.035em; font-weight: 500; }
h2 { font-size: var(--t-h2); letter-spacing: -0.02em; }
h3 { font-size: var(--t-h3); }

.lead {
  font-size: var(--t-lead);
  line-height: 1.5;
  font-weight: 300;
  color: var(--tinta-soft);
  max-width: 56ch;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--vinho); color: var(--creme); }
.btn-primary:hover { background: var(--vinho-deep); }
.btn-accent { background: var(--laranja); color: #fff; }
.btn-accent:hover { background: var(--vermelho-terra); }
.btn-ghost { background: transparent; color: var(--vinho); border: 1px solid currentColor; }
.btn-ghost:hover { background: var(--vinho); color: var(--creme); border-color: var(--vinho); }
.btn-arrow { font-size: 17px; padding-right: 22px; }
.btn-arrow svg { transition: transform 0.25s ease; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ---------- NAV ---------- */
.nav-bar {
  position: sticky; top: 0; z-index: 50;
  background: var(--creme);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav-bar.scrolled {
  border-bottom-color: rgba(43,36,33,0.08);
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(14px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
}
.nav-row .btn { white-space: nowrap; flex-shrink: 0; }
.nav-cta-label { display: inline; }
.nav-cta-short { display: none; }

@media (max-width: 560px) {
  .nav-row { padding: 16px 0; }
  .nav-row .btn { padding: 12px 14px; font-size: 13px; gap: 8px; }
  .nav-cta-label { display: none !important; }
  .nav-cta-short { display: inline !important; }
}

.wordmark-svg { display: block; width: auto; }

/* ---------- HERO ---------- */
.hero {
  padding: clamp(40px, 7vw, 96px) 0 clamp(60px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
.hero h1 { color: var(--vinho); margin-top: 28px; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--laranja); }
.hero .lead { margin-top: 28px; max-width: 44ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.hero-side { display: flex; flex-direction: column; gap: 28px; }
.hero-image-wrap { position: relative; }
.hero-image-wrap .corner-mark {
  position: absolute; top: -22px; right: -22px; color: var(--laranja);
}
.hero-meta { display: flex; flex-direction: column; gap: 16px; }
.hero-meta .pin-text { color: var(--tinta-soft); font-size: 14px; margin: 0; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ---------- SECTION ---------- */
section.s {
  padding: clamp(60px, 9vw, 140px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(40px, 6vw, 80px);
  align-items: end;
}
.section-head h2 { color: var(--vinho); margin-top: 18px; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ---------- IMAGE PLACEHOLDER ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(111,51,50,0.07) 0 2px,
      rgba(111,51,50,0) 2px 14px),
    var(--creme-deep);
  color: var(--vinho);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 16px 16px 16px;
  font-family: "JetBrains Mono", "Menlo", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vinho);
  opacity: 0.75;
  pointer-events: none;
}
.ph-icon { width: 56px; height: 56px; opacity: 0.4; }

.ph.vinho { background-color: var(--vinho); color: var(--creme); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.07) 0 2px, transparent 2px 14px); }
.ph.vinho::after { color: rgba(245,239,230,0.7); }

.ph.verde { background-color: var(--verde); color: var(--creme); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 14px); }
.ph.verde::after { color: rgba(245,239,230,0.6); }

.ph.oliva { background-color: var(--oliva); color: var(--verde); background-image: repeating-linear-gradient(135deg, rgba(26,60,52,0.08) 0 2px, transparent 2px 14px); }
.ph.oliva::after { color: rgba(26,60,52,0.7); }

.ph.laranja { background-color: var(--laranja); color: var(--creme); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 14px); }
.ph.laranja::after { color: rgba(255,255,255,0.7); }

.ph.amarelo { background-color: var(--amarelo); color: var(--vinho); }
.ph.amarelo::after { color: rgba(111,51,50,0.7); }

.ph-corner-num {
  position: absolute; top: 16px; left: 18px;
  font-family: "JetBrains Mono", "Menlo", "Courier New", monospace;
  font-size: 12px; letter-spacing: 0.2em; opacity: 0.85;
}
.ph-cross-deco { opacity: 0.6; }

/* ---------- MARQUEE STRIP ---------- */
.strip {
  border-top: 1px solid rgba(43,36,33,0.1);
  border-bottom: 1px solid rgba(43,36,33,0.1);
  overflow: hidden;
  background: var(--creme-soft);
}
.strip-row {
  display: flex; gap: 40px; padding: 26px 0;
  align-items: center; flex-wrap: wrap;
  color: var(--vinho); font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.strip-item { display: inline-flex; gap: 12px; align-items: center; }

/* ---------- MUNDOS GRID ---------- */
.mundos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mundo {
  text-align: left; display: flex; flex-direction: column; gap: 14px;
  color: inherit; text-decoration: none;
}
.mundo-img { aspect-ratio: 3/4; border-radius: 4px; width: 100%; }
.mundo-meta { display: flex; justify-content: space-between; align-items: baseline; color: var(--vinho); }
.mundo-caption { color: var(--tinta-soft); font-size: 14px; line-height: 1.55; margin: 0; }
.mundo-cta {
  font-size: 13px; color: var(--vinho);
  display: inline-flex; align-items: center; gap: 8px; font-weight: 500;
}
@media (max-width: 880px) { .mundos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mundos-grid { grid-template-columns: 1fr; } }

/* ---------- MANIFESTO / VERDE ---------- */
.manifesto {
  background: var(--verde);
  color: var(--creme);
  padding-top: clamp(80px, 10vw, 160px);
  padding-bottom: clamp(80px, 10vw, 160px);
  position: relative;
  overflow: hidden;
}
.manifesto .tex-bg { opacity: 0.12; filter: invert(0.9) sepia(0.5); }
.filo-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
  position: relative;
}
.manifesto h2 { color: var(--creme); font-weight: 300; margin-top: 24px; }
.manifesto h2 em { font-style: italic; font-weight: 300; }
.manifesto h2 .accent { color: var(--amarelo); }
.manifesto .eyebrow { color: var(--oliva); }
.filo-list { display: flex; flex-direction: column; gap: 40px; }
.filo-point { display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start; }
.filo-num { font-style: italic; color: var(--amarelo); font-size: 22px; font-weight: 300; }
.filo-point h3 { color: var(--creme); margin-bottom: 8px; font-weight: 500; }
.filo-point p { color: rgba(245,239,230,0.78); margin: 0; font-weight: 300; }
@media (max-width: 880px) { .filo-grid { grid-template-columns: 1fr; } }

/* ---------- NAYRA ---------- */
.nayra-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.nayra-img { aspect-ratio: 4/5; border-radius: 4px; }
.nayra-section h2 { color: var(--vinho); margin-top: 18px; }
.nayra-section .lead { margin-top: 20px; }
.nayra-quote {
  margin: 32px 0 0;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: var(--vinho);
  font-weight: 300;
  font-style: italic;
  padding-left: 24px;
  border-left: 2px solid var(--laranja);
}
@media (max-width: 880px) { .nayra-grid { grid-template-columns: 1fr; } }

/* ---------- INSTAGRAM WIDGET ---------- */
.ig-section { background: var(--creme-soft); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ig-card { display: flex; flex-direction: column; gap: 12px; color: inherit; text-decoration: none; }
.ig-card .ig-img-wrap { position: relative; }
.ig-card .ph { aspect-ratio: 1/1; border-radius: 4px; }
.ig-img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--creme-deep);
}
.ig-card .play-badge {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(0,0,0,0.55); color: #fff;
  border-radius: 999px; padding: 4px 8px;
  font-size: 11px; letter-spacing: 0.06em; font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
}
.ig-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.4); padding: 6px 8px; border-radius: 999px;
  color: #fff; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.06em; font-weight: 500;
}
.ig-caption { margin: 0; color: var(--tinta-soft); font-size: 13px; }
.ig-follow { margin-top: 40px; display: flex; justify-content: center; }
@media (max-width: 720px) { .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px) { .ig-grid { grid-template-columns: 1fr; } }

/* ---------- ATELIE / MAPA ---------- */
.atelie-section { padding-top: 0; }
.atelie-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px); align-items: stretch;
}
.atelie-card {
  background: var(--vinho);
  color: var(--creme);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 6px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px; position: relative; overflow: hidden;
}
.atelie-card .eyebrow { color: var(--amarelo); }
.atelie-card h2 { color: var(--creme); margin-top: 18px; }
.atelie-card .addr-label {
  font-weight: 500; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.75; margin-bottom: 4px;
}
.atelie-card .addr {
  position: relative; display: flex; flex-direction: column;
  gap: 8px; font-size: 16px; line-height: 1.6;
}
.atelie-actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; }
.atelie-actions .btn.cta-cream { background: var(--creme); color: var(--vinho); }
.atelie-actions .btn.cta-outline { background: transparent; color: var(--creme); border: 1px solid rgba(245,239,230,0.4); }
.atelie-map {
  border-radius: 6px; overflow: hidden; min-height: 380px;
  position: relative; background: var(--creme-deep);
}
.atelie-map iframe { width: 100%; height: 100%; border: 0; min-height: 380px; display: block; }
.atelie-card .cross-bg {
  position: absolute; right: -60px; bottom: -60px;
  color: rgba(245,239,230,0.08);
}
.atelie-card .relative { position: relative; }
@media (max-width: 880px) { .atelie-grid { grid-template-columns: 1fr; } }

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: var(--laranja); color: #fff;
  position: relative; overflow: hidden;
}
.cta-final .cross-1 { position: absolute; right: -120px; top: -120px; color: rgba(255,255,255,0.12); }
.cta-final .cross-2 { position: absolute; left: -80px; bottom: -100px; color: rgba(255,255,255,0.08); }
.cta-final .inner { position: relative; text-align: center; padding: 40px 0; }
.cta-final .eyebrow { color: rgba(255,255,255,0.85); }
.cta-final h2 { margin-top: 18px; color: #fff; font-size: clamp(40px, 6vw, 80px); }
.cta-final p.lead-cta {
  margin: 20px auto 0; color: rgba(255,255,255,0.92);
  max-width: 50ch; font-size: 18px;
}
.cta-final .btn-final {
  background: #fff; color: var(--laranja);
  font-size: 18px; padding: 22px 36px; margin-top: 40px;
}
.cta-final .phone {
  margin-top: 24px; color: rgba(255,255,255,0.8);
  font-size: 14px; letter-spacing: 0.1em;
}

/* ---------- FOOTER ---------- */
footer.uchi-footer {
  background: var(--vinho);
  color: var(--creme);
  padding: clamp(60px, 8vw, 100px) 0 32px;
  margin-top: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
footer.uchi-footer .wordmark-svg { color: var(--creme); }
.footer-cross-bg {
  position: absolute; right: -120px; bottom: -160px;
  color: rgba(245,239,230,0.05);
}
.footer-cols {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 60px;
}
.footer-cols h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 18px;
}
.footer-cols a.flink {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 4px 0;
  opacity: 0.9;
  font-weight: 300;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-cols a.flink:hover { opacity: 1; transform: translateX(3px); }
.footer-cols p { margin: 0; font-weight: 300; opacity: 0.85; }
.footer-tagline {
  max-width: 32ch; margin-top: 24px;
  font-weight: 300; font-size: 18px;
  opacity: 0.88; line-height: 1.5;
}
.footer-tagline em { font-style: italic; }
.footer-addr p { opacity: 0.9; }
.footer-addr .note { margin-top: 14px; opacity: 0.75; font-size: 14px; }
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(245,239,230,0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  opacity: 0.65;
}
@media (max-width: 720px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ---------- DECORATIVE TEXTURE BG ---------- */
.tex-bg {
  position: absolute;
  inset: 0;
  background: url("assets/textura.svg") repeat center;
  background-size: 720px auto;
  opacity: 0.06;
  pointer-events: none;
}

/* ---------- FLOATING WA ---------- */
.fab-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  z-index: 100;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fab-wa:hover { transform: scale(1.06); }

/* ---------- FADE ---------- */
.fade-enter { animation: fade 0.5s ease both; }
@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ---------- MISC ---------- */
.divider { height: 1px; background: rgba(43,36,33,0.1); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--creme-deep);
  color: var(--vinho);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--laranja);
}
