/* ============================================================
   Experiência Animal | Landing Page
   ============================================================ */

@font-face {
  font-family: "Arbotek";
  src: url("assets/fonts/Arbotek-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arbotek";
  src: url("assets/fonts/Arbotek-LightRounded.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arbotek";
  src: url("assets/fonts/Arbotek-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bege: #fcf6e8;
  --bege-2: #f3ead0;
  --azul: #2a2080;
  --azul-2: #1a1660;
  --azul-claro: #b8e2dc;
  --verde: #2db04f;
  --rosa: #e9367c;
  --laranja: #f47a26;
  --amarelo: #f6dc1d;
  --branco: #ffffff;
  --texto: #1f1a4f;
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1180px;
  --shadow-sm: 0 6px 18px rgba(42, 32, 128, 0.08);
  --shadow-md: 0 18px 40px rgba(42, 32, 128, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Arbotek", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--texto);
  background: var(--bege);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--rosa); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Tipografia */
h1, h2, h3, h4 {
  font-family: "Bowlby One", "Arbotek", sans-serif;
  color: var(--azul);
  letter-spacing: 0.005em;
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 400; /* Bowlby One só tem um peso, já é heavy */
  text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; letter-spacing: 0.01em; }
p  { margin: 0 0 14px; font-size: 1.02rem; }

.eyebrow {
  display: inline-block;
  font-family: "Bowlby One", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rosa);
  background: rgba(233, 54, 124, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-light {
  color: var(--amarelo);
  background: rgba(246, 220, 29, 0.18);
}

.section-head { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-head h2 { margin-top: 6px; }
.section-lead { font-size: 1.08rem; opacity: 0.85; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-lg { padding: 18px 32px; font-size: 1.02rem; }

.btn-primary {
  background: var(--rosa);
  color: var(--branco);
  box-shadow: 0 8px 22px rgba(233, 54, 124, 0.35);
}
.btn-primary:hover { background: #d12d6f; color: var(--branco); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); color: var(--branco); }

.btn-outline {
  background: transparent;
  color: var(--azul);
  border-color: var(--azul);
}
.btn-outline:hover { background: var(--azul); color: var(--branco); }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 246, 232, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(42, 32, 128, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand img { height: 52px; width: auto; }
.nav {
  display: flex;
  gap: 26px;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
.nav a { color: var(--azul); }
.nav a:hover { color: var(--rosa); text-decoration: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--azul);
  border-radius: 2px;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(184, 226, 220, 0.25), transparent 60%),
    radial-gradient(900px 500px at -10% 90%, rgba(233, 54, 124, 0.2), transparent 60%),
    linear-gradient(180deg, var(--azul) 0%, var(--azul-2) 100%);
  color: var(--branco);
  overflow: hidden;
  padding: 80px 0 140px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-pegada { position: absolute; opacity: 0.18; width: 140px; filter: brightness(0) invert(1); }
.hero-pegada-1 { top: 8%; left: 5%; transform: rotate(-12deg); width: 160px; opacity: 0.22; }
.hero-pegada-2 { top: 16%; right: 8%; transform: rotate(18deg); width: 130px; }
.hero-pegada-3 { bottom: 18%; left: 10%; transform: rotate(28deg); width: 120px; }
.hero-pegada-4 { bottom: 22%; right: 14%; transform: rotate(-22deg); width: 100px; }
.hero-pegada-5 { top: 45%; right: 38%; transform: rotate(8deg); width: 80px; opacity: 0.1; }

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 880px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(246, 220, 29, 0.15);
  border: 1px solid rgba(246, 220, 29, 0.4);
  color: var(--amarelo);
  border-radius: 999px;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amarelo);
  box-shadow: 0 0 0 0 rgba(246, 220, 29, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(246, 220, 29, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(246, 220, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(246, 220, 29, 0); }
}

.hero-logo {
  width: min(560px, 80%);
  margin: 0 auto 30px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.28));
}

.hero-headline {
  color: var(--branco);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-family: "Arbotek", sans-serif;
  font-weight: 400;
  text-transform: none;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-headline strong {
  color: var(--amarelo);
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-bullets li { display: inline-flex; align-items: center; gap: 10px; }
.b-icon {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block;
}
.b-rosa { background: var(--rosa); }
.b-verde { background: var(--verde); }
.b-amarelo { background: var(--amarelo); }

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
  background: var(--bege);
  clip-path: path("M 0 80 Q 360 0 720 60 T 1440 50 L 1440 100 L 0 100 Z");
}

/* ============== SOBRE ============== */
.sobre { padding: 110px 0; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-text h2 em {
  font-style: normal;
  color: var(--rosa);
}
.stats {
  display: flex;
  gap: 36px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: "Bowlby One", sans-serif;
  color: var(--azul);
  font-size: 2.6rem;
  line-height: 1;
}
.stat span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--texto);
  opacity: 0.7;
  margin-top: 4px;
}

.sobre-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, var(--azul-claro), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(246, 220, 29, 0.45), transparent 55%),
    var(--bege-2);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sobre-sticker {
  position: absolute;
  width: 46%;
  filter: drop-shadow(0 8px 20px rgba(42, 32, 128, 0.15));
  transition: transform 0.4s ease;
}
.sobre-sticker:hover { transform: scale(1.06) rotate(-3deg); }
.sticker-1 { top: 8%; left: 8%; width: 50%; }
.sticker-2 { bottom: 6%; right: 6%; width: 48%; transform: rotate(8deg); }
.sticker-3 { top: 38%; right: 4%; width: 38%; transform: rotate(-10deg); }

/* ============== ZONAS ============== */
.zonas {
  padding: 110px 0;
  background: var(--azul);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}
.zonas .eyebrow { background: rgba(246, 220, 29, 0.18); color: var(--amarelo); }
.zonas h2 { color: var(--branco); }
.zonas .section-head h2 { color: var(--branco); }

.zonas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.zona {
  position: relative;
  padding: 38px 32px 32px;
  border-radius: var(--radius-lg);
  background: var(--branco);
  color: var(--texto);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.zona:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.zona h3 { color: var(--azul); margin-bottom: 12px; font-size: 1.55rem; }
.zona p { font-size: 1rem; }
.zona-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: "Bowlby One", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  opacity: 0.18;
  letter-spacing: -0.05em;
}
.zona-pegada {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  opacity: 0.25;
  pointer-events: none;
}
.zona-rosa    { background: linear-gradient(180deg, #fff 0%, #ffeaf2 100%); border-top: 6px solid var(--rosa); }
.zona-verde   { background: linear-gradient(180deg, #fff 0%, #e7f7ec 100%); border-top: 6px solid var(--verde); }
.zona-laranja { background: linear-gradient(180deg, #fff 0%, #ffece0 100%); border-top: 6px solid var(--laranja); }
.zona-amarela { background: linear-gradient(180deg, #fff 0%, #fffbdc 100%); border-top: 6px solid var(--amarelo); }

/* ============== OFICINAS ============== */
.oficinas {
  position: relative;
  padding: 110px 0;
  background: var(--bege);
  overflow: hidden;
}
.oficinas-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.oficinas-deco-1 { top: 40px; left: -60px; width: 260px; transform: rotate(-12deg); }
.oficinas-deco-2 { bottom: -30px; right: -30px; width: 220px; transform: rotate(14deg); opacity: 0.55; }
.oficinas .container { position: relative; z-index: 1; }

.oficinas-temas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.tema {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 6px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tema:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tema h3 { font-size: 1.25rem; margin-bottom: 10px; }
.tema p { font-size: 0.98rem; margin: 0; }
.tema-rosa    { border-top-color: var(--rosa); }
.tema-rosa h3 { color: var(--rosa); }
.tema-verde   { border-top-color: var(--verde); }
.tema-verde h3 { color: var(--verde); }
.tema-laranja { border-top-color: var(--laranja); }
.tema-laranja h3 { color: var(--laranja); }

.oficinas-cta-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--texto);
}
.oficinas-cta-text strong { color: var(--azul); }

/* ============== GALERIA / INSTAGRAM ============== */
.galeria {
  padding: 110px 0;
  background:
    radial-gradient(900px 400px at 80% 10%, rgba(184, 226, 220, 0.45), transparent 60%),
    var(--bege-2);
}
.ig-carousel {
  position: relative;
  margin-bottom: 36px;
}
.ig-feed {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: var(--azul) transparent;
  -webkit-overflow-scrolling: touch;
}
.ig-feed::-webkit-scrollbar { height: 8px; }
.ig-feed::-webkit-scrollbar-track { background: transparent; }
.ig-feed::-webkit-scrollbar-thumb {
  background: rgba(42, 32, 128, 0.25);
  border-radius: 8px;
}
.ig-feed::-webkit-scrollbar-thumb:hover { background: var(--azul); }
.ig-feed:focus-visible {
  outline: 2px solid var(--rosa);
  outline-offset: 4px;
  border-radius: 14px;
}

.ig-item {
  position: relative;
  flex: 0 0 calc((100% - 16px * 3) / 4);
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--branco);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  scroll-snap-align: start;
}
.ig-item:hover { transform: translateY(-4px); }
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ig-item:hover img { transform: scale(1.04); }

.ig-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--branco);
  color: var(--azul);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(42, 32, 128, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.ig-arrow svg { width: 22px; height: 22px; }
.ig-arrow:hover { background: var(--rosa); color: var(--branco); transform: translateY(-50%) scale(1.05); }
.ig-arrow:disabled { opacity: 0.35; cursor: default; }
.ig-arrow:disabled:hover { background: var(--branco); color: var(--azul); transform: translateY(-50%); }
.ig-prev { left: -22px; }
.ig-next { right: -22px; }

/* Tiles temáticos no carrossel (placeholders elegantes) */
.ig-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px;
  color: var(--branco);
  text-decoration: none;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.16), transparent 45%);
}
.ig-tile:hover { text-decoration: none; }
.ig-tile .tile-eyebrow {
  font-family: "Bowlby One", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.ig-tile .tile-headline {
  font-family: "Bowlby One", sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 12px 0;
}
.ig-tile .tile-foot {
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.9;
}
.ig-tile-rosa    { background-color: var(--rosa); }
.ig-tile-verde   { background-color: var(--verde); }
.ig-tile-amarelo { background-color: var(--amarelo); color: var(--azul); }
.ig-tile-laranja { background-color: var(--laranja); }
.ig-tile-azul    { background-color: var(--azul); }
.ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 32, 128, 0.85) 100%);
  display: flex; align-items: flex-end;
  padding: 16px;
  color: var(--branco);
  font-size: 0.82rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.ig-item:hover .ig-overlay { opacity: 1; }
.galeria-footer { text-align: center; }

/* ============== SERVIÇO ============== */
.servico {
  padding: 110px 0;
  background: var(--branco);
}
.servico-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.servico-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.servico-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(42, 32, 128, 0.18);
}
.s-label {
  font-family: "Bowlby One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--rosa);
}
.s-value { font-size: 1rem; }
.servico-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.servico-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--bege-2);
}
.servico-map iframe { width: 100%; height: 100%; border: 0; }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--azul-2);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 68px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.95rem; opacity: 0.85; max-width: 280px; }
.footer-col h4 {
  color: var(--amarelo);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--amarelo); text-decoration: none; }
.footer-col p { font-size: 0.9rem; opacity: 0.85; line-height: 1.7; }

.footer-logos {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 32px;
  text-align: center;
}
.logos-bar {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  background: transparent;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.85rem;
  opacity: 0.75;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

/* ============== RESPONSIVO ============== */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bege);
    padding: 18px 24px;
    gap: 14px;
    border-bottom: 1px solid rgba(42, 32, 128, 0.08);
    box-shadow: var(--shadow-sm);
  }
  .header-inner { position: relative; }
  .brand img { height: 44px; }
  .btn-sm { display: none; }

  .sobre-grid,
  .oficinas-grid,
  .servico-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-visual { max-width: 420px; margin: 0 auto; }
  .servico-map { aspect-ratio: 16 / 11; }

  .zonas-grid { grid-template-columns: 1fr; }
  .ig-item { flex: 0 0 calc((100% - 16px) / 2); }
  .ig-prev { left: 4px; }
  .ig-next { right: 4px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero { padding: 60px 0 100px; }
  .hero-pegada { display: none; }
  .hero-pegada-1, .hero-pegada-2 { display: block; opacity: 0.12; width: 90px; }
  .hero-bullets { gap: 16px; }
  .hero-ctas .btn { width: 100%; }

  .stat strong { font-size: 2.1rem; }
  .stats { gap: 22px; }

  .oficinas-cards { grid-template-columns: 1fr 1fr; }
  .oficinas-cards .oficina-card:last-child { grid-column: 1 / -1; }

  .ig-item { flex: 0 0 78%; }
  .ig-arrow { width: 44px; height: 44px; }
  .ig-prev { left: 0; }
  .ig-next { right: 0; }
  .servico-list li { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { grid-template-columns: 1fr; }
}
