
/* =========================================================
   G I A N T H I  —  Site institucional
   Edite cores, tipografia e espaçamentos neste bloco.
   ========================================================= */
:root {
  --ink: #1c1814;
  --ink-2: #40382f;
  --muted: #71675d;
  --paper: #fffdf8;
  --cream: #f7f1e6;
  --cream-2: #eee4d3;
  --line: #ded3c1;
  --gold: #d6a84c;
  --gold-dark: #9a5a16;
  --copper: #934f08;
  --copper-deep: #633102;
  --charcoal: #17130f;
  --pet-coral: #e45f49;
  --pet-blue: #1687a8;
  --success: #20744a;
  --danger: #a93535;
  --white: #fff;
  --shadow-sm: 0 12px 34px rgba(39, 28, 16, .08);
  --shadow-md: 0 22px 65px rgba(39, 28, 16, .13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-h: 82px;
  --font-display: "Manrope", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
::selection { background: var(--gold); color: var(--charcoal); }
:focus-visible { outline: 3px solid rgba(214,168,76,.58); outline-offset: 3px; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--white); padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 16px; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 40px, 840px); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section--compact { padding: 76px 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--line { border-block: 1px solid var(--line); }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cluster { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.stack > * { margin: 0; }
.stack > * + * { margin-top: 18px; }
.stack--small > * + * { margin-top: 10px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--copper); font: 700 12px/1.2 var(--font-display); letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--dark .eyebrow { color: #f0c86e; }
.display { margin: 0; font-family: var(--font-display); font-size: clamp(44px, 6vw, 82px); line-height: .99; letter-spacing: -.052em; font-weight: 680; max-width: 13ch; }
.display em { color: var(--copper); font-style: normal; }
.h1 { margin: 0; font-family: var(--font-display); font-size: clamp(42px, 5.1vw, 70px); line-height: 1.02; letter-spacing: -.046em; font-weight: 680; }
.h2 { margin: 0; font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.038em; font-weight: 670; }
.h3 { margin: 0; font-family: var(--font-display); font-size: clamp(21px, 2vw, 27px); line-height: 1.2; letter-spacing: -.02em; font-weight: 650; }
.lead { margin: 0; color: var(--ink-2); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; max-width: 660px; }
.section--dark .lead { color: #d8cfc4; }
.muted { color: var(--muted); }
.text-small { font-size: 14px; }
.section-head { display: grid; grid-template-columns: 1fr minmax(300px, 560px); align-items: end; gap: 56px; margin-bottom: 50px; }
.section-head--single { grid-template-columns: 1fr; max-width: 820px; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.section--dark .section-head p { color: #c7bdb1; }

/* Buttons */
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 720; font-size: 15px; line-height: 1; transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--white); background: var(--copper); border-color: var(--copper); }
.btn--primary:hover { background: var(--copper-deep); border-color: var(--copper-deep); }
.btn--dark { color: var(--white); background: var(--charcoal); }
.btn--dark:hover { background: #30271f; }
.btn--outline { color: var(--ink); border-color: var(--line); background: transparent; }
.btn--outline:hover { border-color: var(--copper); color: var(--copper); }
.btn--light { color: var(--charcoal); background: var(--white); }
.btn--ghost-light { color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--pet { color: var(--white); background: var(--pet-coral); }
.btn--full { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--copper); font-weight: 750; }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow svg { transition: transform .2s ease; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; min-height: var(--header-h); background: rgba(23,19,15,.98); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.08); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; position: relative; z-index: 1002; }
.brand img { width: 66px; height: 66px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: Georgia, serif; font-size: 20px; letter-spacing: .04em; color: #e2b65c; }
.brand-copy span { margin-top: 6px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: #b8aea3; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 13px; color: #d8d0c7; border-radius: 999px; font-size: 14px; font-weight: 630; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.08); }
.header-cta { white-space: nowrap; }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.16); color: var(--white); background: transparent; border-radius: 50%; position: relative; z-index: 1002; }

/* Announcement */
.topline { padding: 9px 0; background: #0f0c09; color: #cfc4b7; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 12px; }
.topline-inner { display: flex; justify-content: space-between; gap: 20px; }
.topline a:hover { color: var(--white); }

/* Hero */
.hero { min-height: 720px; display: grid; align-items: center; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--line); position: relative; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(147,79,8,.18); border-radius: 50%; right: -120px; top: 80px; }
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(147,79,8,.11); border-radius: 50%; right: -36px; top: 150px; }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 42px; position: relative; z-index: 2; }
.hero-copy { padding: 72px 0; }
.hero-copy .lead { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.tag { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); background: rgba(255,255,255,.62); font-size: 13px; font-weight: 650; }
.hero-visual { align-self: stretch; position: relative; display: grid; place-items: center; min-height: 650px; }
.hero-stage { width: min(100%, 560px); height: 560px; position: relative; display: grid; place-items: center; }
.hero-stage::before { content: ""; position: absolute; width: 72%; height: 72%; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-md); }
.hero-product { position: absolute; z-index: 3; object-fit: contain; filter: drop-shadow(0 30px 28px rgba(34,23,10,.18)); }
.hero-product--beauty { width: 57%; left: 2%; bottom: 5%; }
.hero-product--pet { width: 51%; right: 0; top: 12%; }
.visual-label { position: absolute; z-index: 4; padding: 10px 14px; background: var(--charcoal); color: var(--white); border-radius: 999px; font-size: 12px; font-weight: 740; box-shadow: var(--shadow-sm); }
.visual-label--beauty { left: 3%; top: 14%; }
.visual-label--pet { right: 0; bottom: 10%; background: var(--pet-coral); }
.visual-orbit { position: absolute; inset: 3%; border: 1px dashed rgba(147,79,8,.28); border-radius: 50%; }

/* Internal page hero */
.page-hero { padding: 86px 0 72px; background: var(--cream); border-bottom: 1px solid var(--line); overflow: hidden; position: relative; }
.page-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 56px; min-height: 510px; }
.page-hero-copy .lead { margin-top: 22px; }
.page-hero-copy .cluster { margin-top: 28px; }
.page-hero-art { min-height: 420px; display: grid; place-items: center; position: relative; }
.page-hero-art::before { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); }
.page-hero-art img { position: relative; z-index: 2; max-height: 440px; object-fit: contain; filter: drop-shadow(0 24px 28px rgba(44,27,12,.15)); }
.page-hero--pet { background: #f8f3ea; }
.page-hero--pet .eyebrow, .theme-pet .eyebrow { color: var(--pet-coral); }
.page-hero--pet .page-hero-art::before { border: 16px solid rgba(22,135,168,.08); }
.page-hero--dark { background: var(--charcoal); color: var(--white); }
.page-hero--dark .lead { color: #d8cfc4; }

/* Stats */
.stat-strip { background: var(--charcoal); color: var(--white); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 31px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font: 650 clamp(26px, 3vw, 38px)/1 var(--font-display); color: #f0c86e; letter-spacing: -.03em; }
.stat span { display: block; margin-top: 9px; color: #bfb5aa; font-size: 13px; }

/* Cards */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.card:hover { transform: translateY(-4px); border-color: #c4ad85; box-shadow: var(--shadow-sm); }
.card--flat:hover { transform: none; box-shadow: none; }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--cream); color: var(--copper); margin-bottom: 20px; font-size: 22px; }
.card p { margin: 12px 0 0; color: var(--muted); }
.card .link-arrow { margin-top: 22px; }
.division-card { min-height: 530px; display: grid; grid-template-rows: 270px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.division-media { position: relative; overflow: hidden; background: var(--cream); display: grid; place-items: center; }
.division-media img { max-height: 245px; object-fit: contain; position: relative; z-index: 2; transition: transform .35s ease; }
.division-card:hover .division-media img { transform: scale(1.035); }
.division-media::after { content: ""; position: absolute; width: 250px; height: 250px; border: 1px solid rgba(147,79,8,.18); border-radius: 50%; }
.division-card--pet .division-media::after { border-color: rgba(22,135,168,.22); }
.division-body { padding: 34px; display: flex; flex-direction: column; align-items: flex-start; }
.division-body p { color: var(--muted); margin: 13px 0 22px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip { padding: 6px 10px; background: var(--cream); border-radius: 999px; color: var(--ink-2); font-size: 12px; font-weight: 650; }
.division-body .btn { margin-top: auto; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 74px; }
.media-frame { min-height: 520px; position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-2); border: 1px solid var(--line); }
.media-frame img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.media-frame--contain img { object-fit: contain; padding: 24px; }
.media-caption { position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 18px 20px; background: rgba(23,19,15,.92); color: var(--white); border-radius: 14px; }
.media-caption strong { display: block; font-family: var(--font-display); }
.media-caption span { color: #cfc5ba; font-size: 13px; }
.check-list { display: grid; gap: 13px; margin-top: 26px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.check-item i { width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; background: #efe1c8; color: var(--copper); margin-top: 1px; }

/* Process */
.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.process-step { counter-increment: process; background: var(--paper); padding: 34px; min-height: 270px; }
.process-step::before { content: "0" counter(process); display: block; color: var(--copper); font: 760 13px/1 var(--font-display); letter-spacing: .13em; margin-bottom: 42px; }
.process-step h3 { font-family: var(--font-display); font-size: 22px; line-height: 1.25; margin: 0; }
.process-step p { margin: 13px 0 0; color: var(--muted); font-size: 15px; }
.process-line { position: relative; }
.timeline { display: grid; gap: 0; border-left: 1px solid var(--line); margin-left: 18px; }
.timeline-item { position: relative; padding: 0 0 50px 50px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: attr(data-step); position: absolute; left: -20px; top: -3px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--charcoal); color: #f0c86e; font-weight: 750; font-size: 12px; }
.timeline-item p { color: var(--muted); margin: 10px 0 0; }

/* Products */
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.filter-btn { min-height: 42px; border: 1px solid var(--line); background: var(--white); color: var(--ink-2); border-radius: 999px; padding: 8px 15px; font-size: 13px; font-weight: 700; }
.filter-btn:hover, .filter-btn.is-active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { min-height: 330px; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.product-card[hidden] { display: none; }
.product-card .card-icon { margin-bottom: 30px; }
.product-card ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 7px; color: var(--muted); font-size: 14px; }
.product-card li::before { content: "—"; color: var(--copper); margin-right: 7px; }
.product-card .product-tag { margin-top: auto; padding-top: 24px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 760; color: var(--copper); }
.theme-pet .product-card li::before, .theme-pet .product-tag { color: var(--pet-coral); }
.theme-pet .filter-btn:hover, .theme-pet .filter-btn.is-active { background: var(--pet-blue); border-color: var(--pet-blue); }

/* Feature band */
.feature-band { background: var(--charcoal); color: var(--white); border-radius: var(--radius-lg); padding: 50px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.feature-band p { color: #c9bfb4; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.13); }
.feature-list > div { padding: 25px; background: var(--charcoal); }
.feature-list strong { display: block; color: #f0c86e; font-family: var(--font-display); font-size: 18px; }
.feature-list span { color: #bfb4a8; font-size: 13px; }

/* Audience */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.audience-card { min-height: 190px; padding: 27px; border: 1px solid var(--line); background: rgba(255,255,255,.55); border-radius: 14px; }
.audience-card strong { display: block; font-family: var(--font-display); font-size: 19px; }
.audience-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }

/* CTA */
.cta-panel { position: relative; overflow: hidden; background: var(--copper); color: var(--white); border-radius: var(--radius-lg); padding: 62px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-panel::after { content: "G"; position: absolute; right: 20%; top: -110px; font: 700 330px/1 Georgia, serif; color: rgba(255,255,255,.06); }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel p { color: #f2ddc7; max-width: 680px; margin: 16px 0 0; font-size: 18px; }
.cta-panel .cluster { justify-content: flex-end; }
.cta-panel--pet { background: var(--pet-blue); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; display: flex; justify-content: space-between; gap: 30px; align-items: center; text-align: left; padding: 25px 0; border: 0; background: transparent; color: var(--ink); font-family: var(--font-display); font-size: 18px; font-weight: 650; }
.faq-button span:last-child { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
.faq-button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-panel > div { overflow: hidden; }
.faq-panel p { margin: 0; padding: 0 60px 25px 0; color: var(--muted); }
.faq-button[aria-expanded="true"] + .faq-panel { grid-template-rows: 1fr; }

/* Forms */
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; align-items: start; }
.contact-card { background: var(--charcoal); color: var(--white); border-radius: var(--radius-lg); padding: 38px; position: sticky; top: calc(var(--header-h) + 28px); }
.contact-card p { color: #cfc5ba; }
.contact-list { display: grid; gap: 12px; margin-top: 30px; }
.contact-link { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.contact-link svg { color: #f0c86e; margin-top: 3px; }
.contact-link small { display: block; color: #9f9488; }
.form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field label { font-size: 13px; font-weight: 750; color: var(--ink-2); }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 52px; padding: 13px 15px; color: var(--ink); background: var(--white); border: 1px solid #cfc3b1; border-radius: 10px; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(147,79,8,.12); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.form-check input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--copper); }
.form-note { font-size: 12px; color: var(--muted); }
.form-status { display: none; padding: 14px 16px; border-radius: 10px; font-size: 14px; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: #e3f3ea; color: var(--success); }
.form-status.is-error { background: #fae7e7; color: var(--danger); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

/* Partner */
.partner-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.partner-step { padding: 30px; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); }
.partner-step span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--charcoal); color: #f0c86e; font-weight: 750; margin-bottom: 28px; }
.partner-step p { color: var(--muted); }

/* Map illustration */
.map-card { min-height: 380px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; position: relative; background-color: #eee4d3; background-image: linear-gradient(rgba(147,79,8,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(147,79,8,.09) 1px, transparent 1px); background-size: 42px 42px; }
.map-road { position: absolute; background: var(--white); box-shadow: 0 0 0 1px rgba(147,79,8,.08); border-radius: 999px; transform-origin: center; }
.map-road--1 { width: 520px; height: 22px; left: -70px; top: 190px; transform: rotate(-18deg); }
.map-road--2 { width: 420px; height: 18px; left: 180px; top: 90px; transform: rotate(50deg); }
.map-pin { position: absolute; left: 53%; top: 47%; transform: translate(-50%,-50%); width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50% 50% 50% 8px; transform: translate(-50%,-50%) rotate(-45deg); background: var(--copper); color: var(--white); box-shadow: var(--shadow-md); }
.map-pin svg { transform: rotate(45deg); width: 27px; height: 27px; }
.map-label { position: absolute; left: 50%; top: 70%; transform: translateX(-50%); background: var(--charcoal); color: var(--white); padding: 12px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; white-space: nowrap; }

/* Privacy */
.prose { max-width: 820px; }
.prose h2 { margin: 50px 0 14px; font: 650 29px/1.2 var(--font-display); letter-spacing: -.025em; }
.prose h3 { margin: 30px 0 10px; font: 650 20px/1.2 var(--font-display); }
.prose p, .prose li { color: var(--ink-2); }
.prose a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { padding-left: 22px; }
.notice { padding: 18px 20px; background: var(--cream); border: 1px solid var(--line); border-left: 4px solid var(--copper); border-radius: 10px; color: var(--ink-2); }

/* Footer */
.site-footer { background: var(--charcoal); color: var(--white); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr 1fr; gap: 46px; }
.footer-brand img { width: 112px; }
.footer-brand p { max-width: 320px; color: #afa498; font-size: 14px; }
.footer-title { margin: 0 0 17px; color: #f2cf84; font: 700 12px/1.2 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { color: #c9bfb4; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.socials { display: flex; gap: 9px; margin-top: 23px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: #d9cfc4; }
.socials a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 26px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); color: #8f857a; font-size: 12px; }

/* WhatsApp */
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #1f9d58; color: var(--white); box-shadow: 0 15px 35px rgba(13,74,40,.3); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); }
.whatsapp-float svg { width: 29px; height: 29px; }

/* Consent */
.consent { position: fixed; z-index: 1200; left: 18px; right: 18px; bottom: 18px; max-width: 920px; margin-inline: auto; background: var(--charcoal); color: var(--white); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-md); border-radius: 16px; padding: 20px; display: none; grid-template-columns: 1fr auto; align-items: center; gap: 22px; }
.consent.is-visible { display: grid; }
.consent p { margin: 0; color: #c9bfb4; font-size: 13px; }
.consent a { color: #f2cf84; text-decoration: underline; }
.consent-actions { display: flex; gap: 8px; }
.consent .btn { min-height: 42px; padding: 10px 15px; font-size: 13px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .62s ease, transform .62s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* 404 / thank you */
.center-page { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; padding: 80px 0; text-align: center; }
.center-page .h1 { max-width: 900px; }
.center-mark { width: 90px; height: 90px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--copper); margin: 0 auto 25px; font-size: 35px; }

@media (max-width: 1100px) {
  .nav { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; padding: 110px 28px 30px; background: var(--charcoal); transform: translateX(100%); transition: transform .3s ease; }
  .nav.is-open { transform: translateX(0); }
  .nav a { justify-content: center; min-height: 52px; font-size: 18px; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stage { width: 480px; height: 500px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .section { padding: 76px 0; }
  .topline { display: none; }
  .brand img { width: 55px; height: 55px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 24px; }
  .hero-copy { padding: 54px 0 10px; }
  .hero-visual { min-height: 520px; }
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-art { min-height: 370px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .grid--3, .grid--4, .product-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-layout, .feature-band { grid-template-columns: 1fr; }
  .media-frame { min-height: 420px; }
  .media-frame img { min-height: 420px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { position: static; }
  .cta-panel { grid-template-columns: 1fr; padding: 48px; }
  .cta-panel .cluster { justify-content: flex-start; }
  .partner-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 590px) {
  .container, .container--narrow { width: min(100% - 28px, var(--container)); }
  .section { padding: 58px 0; }
  .section--compact { padding: 48px 0; }
  .brand-copy { display: none; }
  .display { font-size: clamp(39px, 12vw, 56px); }
  .h1 { font-size: clamp(38px, 11vw, 54px); }
  .h2 { font-size: clamp(31px, 9vw, 42px); }
  .lead { font-size: 17px; }
  .hero-actions, .page-hero .cluster { align-items: stretch; }
  .hero-actions .btn, .page-hero .cluster .btn { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-stage { width: 390px; height: 410px; transform: scale(.92); }
  .hero-product--beauty { left: 4%; bottom: 6%; }
  .hero-product--pet { right: 3%; top: 12%; }
  .page-hero { padding: 56px 0 40px; }
  .page-hero-art { min-height: 320px; }
  .page-hero-art::before { width: 290px; height: 290px; }
  .page-hero-art img { max-height: 330px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:last-child { border-bottom: 0; }
  .grid--2, .grid--3, .grid--4, .product-grid, .audience-grid { grid-template-columns: 1fr; }
  .division-card { grid-template-rows: 230px 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: auto; }
  .process-step::before { margin-bottom: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .feature-band { padding: 30px; gap: 35px; }
  .feature-list { grid-template-columns: 1fr; }
  .cta-panel { padding: 35px 25px; }
  .cta-panel .cluster { width: 100%; }
  .cta-panel .btn { width: 100%; }
  .contact-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .consent { grid-template-columns: 1fr; }
  .consent-actions { width: 100%; }
  .consent-actions .btn { flex: 1; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
