/* TIMBER BRINQUEDOS — réplica do Site_Timber.svg */

/* Fontes */

/* Tokens */
:root {
  --white:      #FEFEFE;
  --yellow:     #FFCC29;
  --yellow-2:   #FDB92E;
  --orange:     #F58634;
  --orange-2:   #FAA831;
  --coral:      #F16136;
  --green:      #A8CF45;
  --green-2:    #8FC73E;
  --blue:       #00AFEF;
  --blue-2:     #0089CF;
  --pink:       #F06277;
  --magenta:    #C75EA3;
  --magenta-2:  #B14B91;
  --ink:        #4B4B4D;
  --ink-soft:   #606062;

  --maxw: 1180px;
  --radius: 22px;
  --radius-lg: 34px;

  --font-head: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html { scroll-padding-top: 84px; }
@media (max-width: 780px) { html { scroll-padding-top: 132px; } }

/* Scrollbar com a cor da marca */
html {
  scrollbar-color: var(--coral) var(--white);
  scrollbar-width: thin;
}
html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-track { background: var(--white); }
html::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 8px;
  border: 2px solid var(--white);
}
html::-webkit-scrollbar-thumb:hover { background: #e0532b; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

/* Confete decorativo (camada de fundo por seção) */
.confetti {
position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 360px 360px;
  opacity: .9;
  z-index: 0;

  max-width: 100%;
  overflow: hidden;
}

/* Confete contínuo nas ondas */
.deco-current,
.deco-bite {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 100%;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 360px 360px;

}

.deco-current {
  bottom: 100%;
  z-index: 1;
  background-position: left bottom;
  transform: translateY(1px);
}
.deco-bite    { bottom: 100%; z-index: 29; }

.deco-current--footer { bottom: auto; top: 100%; z-index: 1; }

.deco-current--valores    { aspect-ratio: 1440 / 200; background-color: var(--yellow); clip-path: url(#clip-current-valores); }
.deco-current--timber     { aspect-ratio: 1440 / 280; background-color: var(--orange); clip-path: url(#clip-current-timber); }
.deco-current--brinquedos { aspect-ratio: 1440 / 260; background-color: var(--green);  clip-path: url(#clip-current-brinquedos); }
.deco-current--contato    { aspect-ratio: 1440 / 340; background-color: var(--blue);   clip-path: url(#clip-current-contato); }
.deco-current--aplicativo { aspect-ratio: 1440 / 260; background-color: var(--pink);   clip-path: url(#clip-current-aplicativo); }

.deco-current--footer     { aspect-ratio: 1440 / 320; background-color: var(--pink); }

.deco-bite--timber     { aspect-ratio: 1440 / 280; background-color: var(--yellow); clip-path: url(#clip-bite-timber); }
.deco-bite--brinquedos { aspect-ratio: 1440 / 260; background-color: var(--orange); clip-path: url(#clip-bite-brinquedos); }
.deco-bite--contato    { aspect-ratio: 1440 / 340; background-color: var(--green);  clip-path: url(#clip-bite-contato); }
.deco-bite--aplicativo { aspect-ratio: 1440 / 260; background-color: var(--blue);   clip-path: url(#clip-bite-aplicativo); }

/* Onda divisória */

.wave { display: block; width: 100%; height: auto; position: relative; z-index: 2; margin-bottom: -4px; transform: translateZ(0); }
.wave.top { margin-top: -4px; margin-bottom: 0; }

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(254, 254, 254, .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  transition: background .25s ease, padding .25s ease;
}

.site-header.scrolled {
  background: rgba(254, 254, 254, .95);
  padding: 6px 0;
}
.site-header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-logo { width: 100px; height: auto; transition: width .25s ease; display: block; }
.site-header.scrolled .brand-logo { width: 90px; }

.main-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; align-items: center; }

.nav-pill {
  position: relative;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color .2s ease;
}
.nav-pill::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}
.nav-pill:hover { color: var(--coral); }
.nav-pill:hover::after,
.nav-pill.is-active::after { transform: scaleX(1); }
.nav-pill.is-active { color: var(--coral); }

/* Botão hambúrguer (só aparece no mobile, ≤780px) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: var(--coral);
  transition: transform .3s ease, opacity .2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(254, 254, 254, .97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(75, 75, 77, .08);
    padding: 6px 0;

    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    box-shadow: 0 18px 30px rgba(75, 75, 77, .14);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-pill {
    padding: 14px 24px;
    font-size: 17px;
    border-radius: 0;
  }
  .nav-pill::after { left: 24px; right: auto; width: 22px; }
}

/* HERO */
.hero {
  background: var(--white);
  position: relative;
  overflow: hidden;

  transform: translateZ(0);

  margin-top: -34px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; will-change: transform; }
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 780px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 90px;
  padding-bottom: 150px;
}
.hero-bottom-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: auto;
  z-index: 3;
}
.hero-title {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -1px;
  padding: 24px 34px;
  margin: 0;
  border-radius: 4px;
}
.hero-sub {
  max-width: 500px;
  margin: 22px 0 28px;
  font-size: 19px;
  line-height: 1.45;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero-cta { display: flex; gap: 20px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 16px 34px;
  border: none;
  border-radius: 16px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); background: #e0532b; box-shadow: 0 10px 22px rgba(241,97,54,.28); }
.btn--ghost { background: rgba(255,255,255,.18); }

/* Rótulo de seção (Valores, Timber, ...) */
.section-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 46px;
  color: var(--white);
  text-align: right;
  margin: 0 0 16px;
  letter-spacing: .5px;
}
.section { position: relative; }
.section > .container { position: relative; z-index: 2; }

/* VALORES */

.s-valores { background: var(--yellow); padding: 0 0 21vw; position: relative; }

.wave-valores-amarela {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  transform: translateY(1px);
}

.wave-valores-branca {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 30;
  pointer-events: none;
}
.valores-top {
  position: relative;
  height: 196px;
  z-index: 2;
}
.valores-container {
  position: relative;
  z-index: 10;
}

.section-tab {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1;

  min-width: clamp(100px, 14vw, 200px);
  width: max-content;
  max-width: 85vw;

  height: clamp(65px, 9.7vw, 140px);
  font-size: clamp(13px, 2vw, 26px);

  padding-left: clamp(14px, 3vw, 24px);
  padding-right: clamp(14px, 3vw, 24px);
  padding-bottom: clamp(12px, 1.5vw, 22px);

  border-radius: 0 0 clamp(14px, 2vw, 28px) clamp(14px, 2vw, 28px) !important;
  box-sizing: border-box;
}

.tab-right {
  left: auto;
  right: 24px;
}

.tab-left {
  right: auto;
  left: 28px;
}

.valores-tab-wrap {
  position: relative;
  height: 196px;
}
.valores-macaw {
  position: absolute;
  left: 4px; bottom: -14px;
  width: 330px;
  z-index: 2;
  pointer-events: none;
  transform: none;
}

.valores-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.5fr;
  gap: 30px;
  align-items: start;
  margin-top: 0;
}
.valores-intro-col { display: flex; flex-direction: column; }
.valores-intro {
  background: var(--orange);
  color: var(--white);

  border-radius: 4px;
  padding: 30px 30px 34px;
}
.valores-intro h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 33px;
  line-height: 1.12;
  margin: 0;
}
.valores-lead {
  margin: 22px 0 0;
  font-size: 16.5px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--white);

  text-shadow: 0 1px 3px rgba(0,0,0,.35);
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-card {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}
.value-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: #F0712C;
  margin: 0 0 8px;
}
.value-card p { margin: 0; font-size: 14px; line-height: 1.45; color: #F39A4E; font-weight: 700; }

/* TIMBER */

.s-timber { background: var(--orange); padding: 0 0 20vw; color: var(--white); position: relative; }

.timber-top { position: relative; height: 150px; }
/* CONTROLE DE CAMADAS - SEÇÃO TIMBER */
.wave-timber-laranja {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  transform: translateY(1px);
}

.wave-timber-branca {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 30;
  pointer-events: none;
}

.timber-container {
  position: relative;
  z-index: 10;
}

/* A ABA TIMBER (Lado Esquerdo) */
.section-tab--left {
  right: auto;
  left: 24px;
  top: -14vw;
  background-color: #F8A421;

  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.timber-tab-wrap {
  position: relative;
  height: 80px;
}
.timber-toucan {
  position: absolute;

  left: 400px;

  bottom: -19px;
  width: min(230px, 30vw);
  z-index: 2;
  pointer-events: none;
}

.timber-head {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.08;
  padding: 26px 34px;
  border-radius: 4px;
  margin: 6px 0 34px;
}
.timber-text { max-width: 880px; margin: 0 auto; }
.timber-text p { font-size: 16.5px; line-height: 1.6; font-weight: 600; margin: 0 0 18px; }
.timber-girl {
  float: left;
  width: 130px;
  margin: 6px 28px 8px 30px;
  shape-outside: circle(50%);
}

/* BRINQUEDOS */
.s-brinquedos {
background: var(--green);

  padding: 0 0 25vw !important;
  position: relative;
}

/* Camadas — Brinquedos */
.wave-brinquedos-verde {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  transform: translateY(1px);
}

.wave-frente {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 30;
  pointer-events: none;
  transform: translateZ(0);
}
.tab-container {
  position: relative;
  z-index: 10;
}

.wave-brinquedos-branca {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 30;
  pointer-events: none;
}

.brinquedos-container {
  position: relative;
  z-index: 10;
}

.brinquedos-top {
  position: relative;
  height: 196px;
}

/* A ABA BRINQUEDOS (Lado Direito) */
.section-tab--green {

  background-color: #6AB946;

  top: -14vw;

  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.brinquedos-intro-text {
  position: relative;
}

.brinquedos-pig {
  position: absolute;

  right: 84px;
  top: -125px;
  width: 138px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.brinquedos-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 10px;
}
.brinquedos-head {
  display: inline-block;
  background: #4FA72A;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.08;
  padding: 24px 32px;
  border-radius: 4px;
  margin: 0 0 22px;
}
.brinquedos-sub { max-width: 520px; color: var(--white); font-weight: 800; font-size: 16.5px; line-height: 1.5; margin: 0 0 24px; }
.brinquedos-photo {
  justify-self: center;
  width: 520px;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.brinquedos-photo img { width: 100%; height: 100%; object-fit: cover; }

.cat-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--white);

  font-family: var(--font-head);
  font-weight: 800;

  font-size: clamp(15px, 5vw, 24px);
  padding: clamp(8px, 3vw, 12px) clamp(16px, 5vw, 28px);
  border-radius: 16px;
  margin: 34px 0 22px;

  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}
.timber-head,
.brinquedos-head,
.contato-head {
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
}
.product-media {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product-media img { max-height: 100%; width: auto; object-fit: contain; }
.product-tags { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tag {
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 12px;
}
.tag--age { padding: 6px 12px; }
.product-card h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--magenta);
  margin: 0 0 10px;
}
.product-card p { margin: 0 0 16px; font-size: 14px; line-height: 1.45; color: var(--magenta-2); font-weight: 600; }
.product-foot { margin-top: auto; }
.product-code { font-size: 12.5px; color: var(--magenta-2); font-weight: 700; margin: 0 0 4px; }
.product-type { font-size: 13px; color: var(--magenta); font-weight: 700; margin: 0; }

.product-grid--single { grid-template-columns: repeat(4, 1fr); }
.product-grid--single .product-card { max-width: none; }

.product-grid--solo { grid-template-columns: repeat(4, 1fr); position: relative; }

.deco { position: absolute; z-index: 1; pointer-events: none; }

.deco-jaguar   { top: 90px;  left: 360px; width: 600px; }
.deco-princess { top: -10em;   left: 750px; width: 230px; }
.deco-deer     { top: 80px; left: 310px; width: 356px; }

/* CONTATO */

.s-contato {
  background: var(--blue);
  padding: 0 0 20vw;
  color: var(--white);
  position: relative;
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;

  margin-top: -20px;
  position: relative;
  z-index: 10;
}
.contato-head {
  display: inline-block;
  background: var(--blue-2);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.06;
  padding: 22px 28px;

  border-radius: 4px;
  margin: 0 0 24px;
  color: var(--white);
}

.contato-text { font-size: 16.5px; line-height: 1.6; font-weight: 600; max-width: 460px; }
/* CARTÃO INSTITUCIONAL (Contato) */
.contato-inst {
  background: var(--white);
  color: var(--coral);
  padding: 32px 34px;
  border-radius: var(--radius);
  margin-top: 34px;
  display: inline-block;
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
}

.contato-inst h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--coral);
}

.contato-inst p {
  margin: 4px 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--coral);
}
.contact-form {
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
}
.contact-form h3 { font-family: var(--font-head); font-weight: 800; font-size: 26px; margin: 0 0 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 4px; }
.form-note { margin: 14px 0 0; font-size: 13.5px; opacity: .85; text-align: center; }

/* ALADDIN (Ancorado no meio da grelha) */
.contato-aladdin {
  position: absolute;

  left: 42%;
  transform: translateX(-50%);
  top: -85px;
  width: 155px;
  z-index: 15;
  pointer-events: none;
}
/* APLICATIVO */

.s-app {
  background: var(--pink);

  padding: 0 0 4vw;
  position: relative;
}
.s-app .section-label { color: rgba(255,255,255,.85); }
.app-inner { display: flex; justify-content: center; padding: 20px 0 10px; }
.app-star {
  width: 100%;
  max-width: 640px;
  height: auto;
  transition: transform .3s ease;
}.app-star-link:hover .app-star { transform: scale(1.03); }

/* FOOTER */
.site-footer {
  background: var(--white);
  padding: 40px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--white);
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 34px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-brand img { width: 92px; }
.footer-tagline {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
}
.socials { display: flex; gap: 10px; margin-top: 2px; }
.social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform .18s ease, background .18s ease;
}
.social:hover { transform: translateY(-3px); background: #e0532b; }
.social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-title {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--coral);
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links li,
.footer-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.footer-links a {
  position: relative;
  width: fit-content;
  transition: color .18s ease;
}

.footer-links a:hover { color: var(--coral); }
.footer-links--plain li { color: var(--ink-soft); }

.footer-bottom {
  border-top: 1px solid rgba(75, 75, 77, .12);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-bottom a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--coral);
  transition: opacity .18s ease;
}
.footer-bottom a:hover { opacity: .7; }

.tab-valores    { background-color: #F8A421;       top: calc(-10.8vw - 8px); }
.tab-timber     { background-color: #F8A421;       top: calc(-12vw - 30px); }

.tab-brinquedos { background-color: #6AB946;       top: calc(-14vw - 8px); }
.tab-contato    { background-color: var(--blue-2); top: calc(-8vw - 87px); }
.tab-aplicativo { background-color: #F48884;       top: calc(-4vw - 83px); }

/* RESPONSIVO — Fase 2 (mantém o layout desktop, adaptado) */

/* TABLET / telas médias (≤1024px) */
@media (max-width: 1024px) {

  .product-grid,
  .product-grid--single,
  .product-grid--solo { grid-template-columns: repeat(2, 1fr); }

  .product-grid--solo { grid-template-columns: 1fr; justify-items: start; }
  .product-grid--solo .product-card { max-width: 340px; }

  .deco { display: none; }

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

  .valores-intro { max-width: 480px; }
  .contato-grid { grid-template-columns: 1fr; gap: 30px; }

  .contato-aladdin {
    right: auto;
    left: 405px;
    top: -28px;
    width: 130px;
    transform: none;
  }

  .hero-title { font-size: 54px; }
  .hero-content { min-height: 600px; padding-bottom: 120px; }
}

@media (min-width: 648px) and (max-width: 1024px) {
  .deco { display: block; }

  .contato-grid { padding-top: 80px; }

 .deco-jaguar {
    top: 180px;
    left: min(500px, 48vw);
    width: min(400px, 48vw);
  }
  .deco-princess {
    top: -150px;

    left: clamp(450px, 60vw, 500px);
    width: min(180px, 22vw);
  }
  .deco-deer {
    top: 165px;
    left: min(850px, 54vw);
    width: min(240px, 30vw);
  }

  .brinquedos-intro-text { padding-top: 140px; }
  .brinquedos-pig {
    right: auto;
    left: 310px;
    top: 10px;
    width: 140px;
    height: auto;
  }

}

@media (max-width: 950px) {
  .brinquedos-intro { grid-template-columns: 1fr; }
  .brinquedos-photo { width: 320px; height: 320px; margin: 8px auto 0; }
}

/* TELEMÓVEL (≤640px) */
@media (max-width: 640px) {
  .container { padding-inline: 20px; }

  .site-header { padding: 10px 0; }
  .brand-logo { width: 92px; }

  .hero-content { min-height: 470px; padding-top: 70px; padding-bottom: 84px; }
  .hero-title { font-size: 36px; line-height: 1.06; letter-spacing: -.5px; padding: 16px 20px; }
  .hero-sub { font-size: 16px; margin: 18px 0 22px; }
  .hero-cta { gap: 14px; }
  .btn { font-size: 15px; padding: 14px 24px; }

  .section-label { font-size: 27px; }

.valores-top {
  position: relative;
  height: 196px;
}
  .timber-top{ height: 96px; }

  .valores-macaw { width: 148px; left: 0; bottom: -6px; }

  .brinquedos-intro-text { padding-top: min(128px, 34vw); }
  .brinquedos-pig {
    width: min(96px, 26vw);
    height: auto;
    left: auto;

    right: clamp(116px, 34vw, 150px);
    top: 6px;
  }

  .contato-grid { padding-top: 40px; }
.contato-aladdin {
    width: 95px;
    left: auto;
    right: 15px;
    top: -5px;
    transform: none;
  }

  .valores-intro { padding: 24px 24px 26px; }
  .valores-intro h2 { font-size: 25px; }
  .valores-lead { font-size: 15.5px; }

  .timber-head { font-size: clamp(15px, 5.9vw, 27px); padding: 18px; margin-bottom: 26px; }
  .brinquedos-head { font-size: clamp(15px, 5.9vw, 27px); padding: 18px; }
  .brinquedos-sub { font-size: 15.5px; }
  .brinquedos-photo { width: 240px; height: 240px; }
  .contato-head { font-size: clamp(15px, 5.9vw, 27px); padding: 18px; }

  .timber-head,
  .brinquedos-head,
  .contato-head {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .value-cards { grid-template-columns: 1fr; }
  .timber-girl { width: 104px; margin: 4px 20px 6px 0; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 22px; }
  .contact-form h3 { font-size: 23px; }

  .product-media { height: 140px; }
  .product-card { padding: 18px 16px 20px; }
  .product-card h4 { font-size: 19px; }
  .product-grid--solo .product-card { max-width: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 28px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
   .tab-timber {
    top: calc(-8vw - 30px);
}
}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {

  .tab-contato {
    top: calc(-9.46vw - 40.5px);
  }

  .tab-aplicativo {
    top: calc(-10.05vw - 12px);
  }
 .timber-toucan {

    left: clamp(100px, 45vw, 180px);
    width: min(200px, 40vw);
  }

  .timber-tab-wrap { height: 56px; }

   .section-tab--left {
    left: 16px;
    right: auto;
  }

  .tab-left {
    left: 20px;
  }
}

/* TELEMÓVEL pequeno (≤400px) */
@media (max-width: 400px) {
  .hero-title { font-size: 32px; }

  .product-grid,
  .product-grid--single { grid-template-columns: 1fr; }
  .product-media { height: 200px; }
  .timber-toucan { left: 130px; width: 90px; }

  .section-tab {

    width: max-content !important;
    min-width: 80px;

    max-width: 85vw;

    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px !important;

    box-sizing: border-box;
  }
  .tab-brinquedos { top: calc(-12vw - 8px); }

}
@media (max-width: 480px) {
  .brinquedos-pig { display: none; }
  .brinquedos-intro-text { padding-top: 84px; }
  .contato-aladdin { display: none; }
  .valores-macaw { display: none; }

  .valores-tab-wrap { height: 45px; }

  .timber-toucan { display: none; }
  .timber-tab-wrap { height: 20px; }
}

/* FASE 3 — pequenas melhorias (a11y, UX, foco) */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-pill:focus-visible,
.btn:focus-visible,
.social:focus-visible,
.app-star-link:focus-visible,
.to-top:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.contact-form .field { margin-bottom: 16px; }
.contact-form .field input,
.contact-form .field textarea { margin-bottom: 6px; }
.contact-form .field input.input-invalid,
.contact-form .field textarea.input-invalid {
  outline: 2px solid #C0392B;
  outline-offset: 1px;
}
.field-error {
  display: block;
  color: #FFE2DC;
  font-size: 12.5px;
  font-weight: 700;
  margin: 0 2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}
.form-note--wait,
.form-note--error { display: none; color: #FFE2DC; }

.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 50px; height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .18s ease;
  z-index: 50;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: #e0532b; }
.to-top svg { width: 24px; height: 24px; fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .to-top { transition: opacity .2s ease; transform: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* OTIMIZAÇÃO PARA MONITORES ULTRA-WIDE (Telas ≥ 1440px) */
@media (min-width: 1440px) {
  .tab-brinquedos {

    top: calc(-15vw + 8px);

  }
  .hero > svg {
    max-height: 240px;
  }

  .s-valores .wave-fundo,
  .s-valores .wave-frente {
    max-height: 200px;
  }

  .tab-valores {
    top: -163.5px !important;
  }

  .hero-media img {
    object-position: center 25%;
  }
  .tab-contato{
    top: calc(-10.7vw - 87px);
  }
  .tab-aplicativo{
    top: calc(-8vw - 83px);
  }
  .timber-tab-wrap {
  height: 0px;
  }
}

/* ANIMAÇÕES DE SCROLL — exclusivo da versão "index-animado" */
@media (prefers-reduced-motion: no-preference) {

  /* TÍTULOS: aparecem da ESQUERDA para a DIREITA (wipe horizontal) */
  .anim-on .hero-title,
  .anim-on .valores-intro,
  .anim-on .timber-head,
  .anim-on .brinquedos-head,
  .anim-on .cat-label,
  .anim-on .contato-head {
    clip-path: inset(0 100% 0 0);
    transition: clip-path .85s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--rd, 0ms);
    will-change: clip-path;
  }

  /* ABAS/TAGS como MARCADORES: "descem" da onda (wipe de cima p/ baixo, */
  .anim-on .section-tab {
    clip-path: inset(0 0 100% 0);
    transition: clip-path .6s cubic-bezier(.34, 1.56, .64, 1);
    transition-delay: var(--rd, 120ms);
    will-change: clip-path;
  }

  /* CARTÕES / TEXTO / FOTOS / FORM: sobem suavemente + fade */
  .anim-on .hero-sub,
  .anim-on .hero-cta,
  .anim-on .valores-lead,
  .anim-on .value-card,
  .anim-on .timber-text p,
  .anim-on .brinquedos-sub,
  .anim-on .brinquedos-photo,
  .anim-on .product-card,
  .anim-on .contato-text,
  .anim-on .contato-inst,
  .anim-on .contato-form,
  .anim-on .app-inner,
  .anim-on .footer-brand,
  .anim-on .footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--rd, 0ms);
    will-change: opacity, transform;
  }

  /* ESTADO REVELADO (classe `.rv-in` adicionada por JS ao entrar na */
  .anim-on .rv-in {
    clip-path: inset(0 0 0 0) !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
