/* ==========================================================================
   Gráfica Adonis — Nova Identidade Visual
   Baseado no manual de marca adonis_apresentacao_identidade_visual_2023.pdf
   ========================================================================== */

/* CSS Variables — Paleta de Cores */
:root {
  /* Primary */
  --c-magenta:        #E5007D;   /* C.0 M.100 Y.20 K.10 */
  --c-magenta-dark:   #B30063;
  --c-magenta-soft:   #FF4B9D;

  /* Accent (requested by client) */
  --c-green:          #28ad16;
  --c-green-dark:     #1f8a10;
  --c-blue-deep:      #004070;   /* azul escuro pros cards de por que escolher */

  /* Dark */
  --c-navy:           #002655;  /* NEW: brand primary blue (RGB 0-38-85) */   /* C.100 M.50 Y.0 K.85 */
  --c-navy-soft:      #112540;

  /* Blue */
  --c-blue:           #004080;   /* C.100 M.50 Y.0 K.50 */
  --c-blue-light:     #1E5FA0;
  --c-blue-catalog:   #1E5FA0;   /* background do catálogo */

  
  /* Menu item colors (Round 3) */
  --c-cintas:          #d6006e;   /* pink/magenta hot */
  --c-certificacoes:   #002655;   /* same as navy (new blue) */
  --c-sustentabilidade: #005445;  /* FSC green */
  --c-faleconosco:     #f0ab1f;   /* amarelo */

/* Cor do cliente para a seção Por Que Escolher (era roxo, cliente pediu #b5d4d9) */
  --c-purple:         #b5d4d9;
  --c-icon-blue:      #004070;

  /* Accent */
  --c-cyan:           #B8E6DA;
  --c-yellow:         #F2A600;
  --c-amber:          #F2A600;   /* botões catálogo */
  --c-graphite:       #29332E;

  /* Neutrals */
  --c-white:          #FFFFFF;
  --c-offwhite:       #F4F5F7;
  --c-grey-100:       #E6E8EA;
  --c-grey-300:       #B3B7BB;
  --c-grey-500:       #6B7177;
  --c-grey-700:       #3A3F44;
  --c-text:           #1A1F23;
  --c-text-muted:     #5A6168;

  /* Typography */
  --ff-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --ff-body:    'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-8:  32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,19,38,.06);
  --shadow:    0 8px 24px rgba(0,19,38,.08);
  --shadow-lg: 0 24px 60px rgba(0,19,38,.12);
  --shadow-magenta: 0 12px 32px rgba(229,0,125,.25);

  /* Transitions */
  --t-fast: 150ms ease;
  --t:      250ms ease;
  --t-slow: 450ms cubic-bezier(.2,.8,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-display); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: var(--c-navy); }

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-6); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-6); }

/* ==========================================================================
   Top bar (apenas social — telefone foi para o rodapé)
   ========================================================================== */
.topbar { background: var(--c-navy); color: rgba(255,255,255,.85); font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: flex-end; height: 36px; gap: var(--s-2); padding-right: var(--s-6); }
.topbar-social { display: flex; align-items: center; gap: var(--s-2); }
.topbar-social a { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); transition: color var(--t); }
.topbar-social a:hover { color: var(--c-yellow); }
.topbar-social svg { width: 14px; height: 14px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: sticky; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: all var(--t); }
.site-header.scrolled { border-bottom-color: var(--c-grey-100); box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: var(--s-5); }
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 60px; width: auto; }
.site-nav { display: flex; align-items: center; gap: var(--s-2); }
.site-nav a { padding: 10px 12px; font-size: 14.5px; font-weight: 600; color: var(--c-navy); border-radius: 8px; transition: all var(--t); position: relative; white-space: nowrap; }
.site-nav a:hover { color: var(--c-magenta); }
.site-nav a.active { color: var(--c-magenta); }
.site-nav a.active::after { content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px; height: 2px; background: var(--c-magenta); border-radius: 2px; }


.header-cta { display: flex; align-items: center; gap: var(--s-3); }
.header-cta .btn { padding: 12px 20px; font-size: 13.5px; }
.header-cta .btn-green { padding: 12px 22px; font-size: 14px; }

.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 8px; color: var(--c-navy); }
.menu-toggle:hover { background: var(--c-offwhite); }
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile nav */
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 100vw); background: var(--c-white); z-index: 9999; transform: translateX(100%); transition: transform var(--t-slow); box-shadow: -24px 0 60px rgba(0,0,0,.15); display: flex; flex-direction: column; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: var(--s-5) var(--s-6); border-bottom: 1px solid var(--c-grey-100); }
.mobile-nav-header img { height: 36px; }
.mobile-nav-close { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.mobile-nav nav { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.mobile-nav nav a { padding: 14px 16px; font-size: 17px; font-weight: 600; color: var(--c-navy); border-radius: 12px; transition: all var(--t); }
.mobile-nav nav a:hover, .mobile-nav nav a.active { background: var(--c-offwhite); color: var(--c-magenta); }
.mobile-nav .header-cta { padding: var(--s-6); border-top: 1px solid var(--c-grey-100); display: flex; flex-direction: column; }
.mobile-nav .header-cta .btn { width: 100%; justify-content: center; }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,19,38,.5); z-index: 199; opacity: 0; pointer-events: none; transition: opacity var(--t); }
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn { display: inline-flex; align-items: center; gap: var(--s-2); padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; letter-spacing: .02em; transition: all var(--t); white-space: nowrap; }
.btn-primary { background: var(--c-magenta); color: var(--c-white); box-shadow: var(--shadow-magenta); }
.btn-primary:hover { background: var(--c-magenta-dark); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(229,0,125,.35); }
.btn-green { background: var(--c-green); color: var(--c-white); box-shadow: 0 12px 32px rgba(40,173,22,.30); }
.btn-green:hover { background: var(--c-green-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--c-navy); color: var(--c-white); }
.btn-secondary:hover { background: var(--c-blue); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--c-white); border: 2px solid var(--c-white); }
.btn-outline:hover { background: var(--c-white); color: var(--c-navy); }
.btn-ghost { background: transparent; color: var(--c-navy); border: 2px solid var(--c-navy); }
.btn-ghost:hover { background: var(--c-navy); color: var(--c-white); }
.btn-whatsapp { background: #25D366; color: var(--c-white); }
.btn-whatsapp:hover { background: #1FAD53; transform: translateY(-2px); }
.btn-whatsapp-pill { background: #25D366; color: var(--c-white); padding: 12px 22px; font-size: 14px; }
.btn-whatsapp-pill:hover { background: #1FAD53; transform: translateY(-2px); }
.btn-outline-amber { background: var(--c-yellow); color: var(--c-navy); border: 2px solid var(--c-yellow); padding: 12px 22px; font-size: 14px; }
.btn-outline-amber:hover { background: transparent; color: var(--c-white); border-color: var(--c-white); }
.btn-amber { background: var(--c-amber); color: var(--c-navy); padding: 12px 24px; font-size: 14px; box-shadow: 0 6px 18px rgba(242,166,0,.35); }
.btn-amber:hover { background: #E09700; transform: translateY(-2px); }
.btn-amber-sm { background: var(--c-amber); color: var(--c-navy); padding: 8px 20px; font-size: 13px; font-weight: 700; }
.btn-amber-sm:hover { background: #E09700; }
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Hero banner — agora é um único vídeo (17s). Placeholder preparado.
   ========================================================================== */
.hero-banner { position: relative; width: 100%; height: clamp(280px, 38vw, 480px); background: var(--c-graphite); overflow: hidden; }
.hero-banner video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-banner .video-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-graphite) 0%, var(--c-navy) 100%); }
.hero-banner .video-placeholder::before { content: ''; position: absolute; inset: 0; background-image: url('../images/grafica_adonis_halftone_bg.png'); background-size: 280px; opacity: .25; }
.hero-banner .video-placeholder-text { position: relative; text-align: center; color: rgba(255,255,255,.7); padding: var(--s-6); }
.video-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--c-yellow); background: rgba(255,255,255,.06); padding: 4px 12px; border-radius: 999px; margin-bottom: var(--s-3); }
.hero-banner .video-placeholder-text h3 { color: var(--c-white); font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; margin-bottom: var(--s-3); font-style: italic; opacity: .85; }
.hero-banner .video-placeholder-text p { font-size: 14px; line-height: 1.6; max-width: 520px; margin: 0 auto; }

/* ==========================================================================
   Hero strip (dark navy band with headline only — botões removidos)
   ========================================================================== */
.hero-strip { background: var(--c-navy); color: var(--c-white); padding: var(--s-12) 0; }
.hero-strip-stack { max-width: 1080px; margin: 0 auto; text-align: center; }
.hero-strip-title { color: var(--c-white); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.15; margin: 0 0 20px; font-weight: 800; letter-spacing: -0.01em; }
.hero-strip-title .accent { color: var(--c-magenta); }
.hero-strip-subtitle { color: var(--c-white); font-size: clamp(13px, 1.15vw, 15px); font-weight: 400; font-style: italic; line-height: 1.5; margin: 0; }
.hero-strip-subtitle .accent { color: var(--c-white); font-weight: 500; }

/* ==========================================================================
   Section base — espaçamento entre seções da home (numbers -> certificações)
   ========================================================================== */
.section { padding: var(--s-20) 0; position: relative; }
.section.section-numbers { padding-bottom: var(--s-10); } /* reduz gap antes de Certificações */
.section.section-certs { padding-top: var(--s-10); }    /* mesmo motivo */
.section-sm { padding: var(--s-16) 0; }
.section-lg { padding: var(--s-32) 0; }
.section-dark { background: var(--c-navy); color: var(--c-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--c-white); }
.section-grey { background: var(--c-offwhite); }

/* ==========================================================================
   Numbers section (white bg, halftone on left, 3 stats on right)
   ========================================================================== */
.section-numbers { background: var(--c-white); }
.numbers-grid { display: grid; grid-template-columns: 280px 1fr; gap: var(--s-12); align-items: center; }
.numbers-halftone img { width: 100%; }
.numbers-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-8); }
.num-item { text-align: center; }
.num-val { font-family: var(--ff-display); font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); color: var(--c-navy); line-height: 1.15; margin-bottom: var(--s-2); }
.num-lbl { font-size: 15px; color: var(--c-text-muted); font-weight: 500; }

/* ==========================================================================
   Certs row (horizontal layout matching client design)
   ========================================================================== */
.section-certs { background: var(--c-white); padding: var(--s-16) 0 var(--s-12); }
.section-certs .container { text-align: center; }
.certs-title { font-size: clamp(32px, 3.6vw, 44px); color: var(--c-navy); margin: 0 0 var(--s-10); text-align: left; }
.certs-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-6); text-align: center; }
.cert-mini { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-2); }
.cert-mini .cert-logo { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--s-3); }
.cert-mini .cert-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cert-mini .cert-logo-text { font-family: var(--ff-display); font-weight: 800; font-size: 22px; color: var(--c-magenta); border: 2px solid var(--c-magenta); border-radius: 50%; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.cert-mini h4 { font-size: 15px; color: var(--c-navy); font-weight: 700; margin: 0; }
.cert-mini p { font-size: 12px; color: var(--c-text-muted); line-height: 1.45; margin: 0; }
.cert-mini p.cert-mini-desc { color: var(--c-grey-500); font-size: 11px; margin-top: 4px; }

/* ==========================================================================
   Section title plain (for Embalagens, Estrutura, etc.)
   ========================================================================== */
.section-title-plain { font-size: clamp(28px, 3.2vw, 38px); color: var(--c-navy); margin-bottom: var(--s-6); }
.lead-text { max-width: 920px; margin-bottom: var(--s-12); }
.lead-text p { font-size: 16px; line-height: 1.7; color: var(--c-text); }

/* ==========================================================================
   Product tiles (3 large dark cards COM FOTO de fundo)
   ========================================================================== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin-bottom: var(--s-12); }
.product-tile { position: relative; color: var(--c-white); border-radius: 0; padding: var(--s-6); display: flex; flex-direction: column; justify-content: space-between; min-height: 420px; transition: all var(--t); overflow: hidden; background: var(--c-graphite); }
.product-tile .tile-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; filter: brightness(1.18) saturate(.75); transition: all var(--t); }
.product-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%); z-index: 1; }
.product-tile:hover .tile-bg { opacity: 1; filter: brightness(1) saturate(1.05); transform: scale(1.02); }
.product-tile-top { position: relative; z-index: 2; flex: 1; display: flex; align-items: flex-start; padding-top: var(--s-4); }
.product-tile-top p { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,1); text-shadow: 0 2px 6px rgba(0,0,0,.7); font-weight: 600; }
.product-tile-bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding-top: var(--s-6); border-top: 1px solid rgba(255,255,255,.22); margin-top: var(--s-6); }
.product-tile-bottom h3 { color: var(--c-white); font-size: 28px; font-weight: 700; margin: 0; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.product-tile-bottom .arrow { font-size: 26px; color: var(--c-magenta); transition: transform var(--t); }
.product-tile:hover .arrow { transform: translateX(8px); }

/* ==========================================================================
   Segment circles (4)
   ========================================================================== */
.segment-circles { display: flex; align-items: center; justify-content: center; gap: var(--s-8); flex-wrap: wrap; padding-top: var(--s-6); }
.segment-circle { display: flex; flex-direction: column; align-items: center; gap: var(--s-3); }
.segment-circle .seg-circle-icon { width: 90px; height: 90px; border-radius: 50%; border: 2px solid var(--c-navy); display: flex; align-items: center; justify-content: center; color: var(--c-navy); transition: all var(--t); }
.segment-circle .seg-circle-icon svg { width: 36px; height: 36px; }
.segment-circle:hover .seg-circle-icon { background: var(--c-magenta); border-color: var(--c-magenta); color: var(--c-white); transform: scale(1.06); }
.segment-circle span { font-size: 12px; font-weight: 700; color: var(--c-navy); letter-spacing: .08em; }

/* ==========================================================================
   Why-us — fundo #b5d4d9 (cor pedida pelo cliente, antes era roxo)
   ========================================================================== */
.why-us { background: var(--c-purple); color: var(--c-navy); padding: var(--s-20) 0; position: relative; overflow: hidden; }
.why-us::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,.35), transparent 30%), radial-gradient(circle at 90% 80%, rgba(0,0,0,.04), transparent 30%); }
.why-us .container { position: relative; }
.why-title { color: var(--c-navy); font-size: clamp(28px, 3.2vw, 38px); margin-bottom: var(--s-12); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-10) var(--s-12); }
.why-card { text-align: center; }
.why-card .icon { width: 96px; height: 96px; margin: 0 auto var(--s-6); background: var(--c-icon-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform var(--t); }
.why-card:hover .icon { transform: scale(1.08) rotate(-4deg); }
.why-card .icon svg { width: 44px; height: 44px; color: var(--c-white); }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--c-navy); text-transform: uppercase; letter-spacing: .04em; margin-bottom: var(--s-3); }
.why-card p { font-size: 15px; color: var(--c-graphite); line-height: 1.6; max-width: 320px; margin: 0 auto; }
.why-card.beauty .icon { background: var(--c-icon-blue); } /* unificado: todos os ícones na mesma cor */

/* ==========================================================================
   Placeholder block (for Estrutura Fabril, Sustentabilidade, Blog)
   ========================================================================== */
.section-fabril, .section-sust, .section-blog-title { padding: var(--s-12) 0; }
.section-blog-title { padding-bottom: var(--s-20); }
.placeholder-block { background: var(--c-offwhite); border: 2px dashed var(--c-grey-100); border-radius: var(--radius); padding: var(--s-12); text-align: center; }
.placeholder-label { font-size: 22px; color: var(--c-navy); font-weight: 600; font-style: italic; margin-bottom: var(--s-3); }
.placeholder-hint { font-size: 14px; color: var(--c-text-muted); }

/* ==========================================================================
   Catalog section (blue bg + 2 amber buttons)
   ========================================================================== */
.catalog-section { background: var(--c-blue-catalog); color: var(--c-white); padding: var(--s-12) 0; position: relative; overflow: hidden; }
.catalog-section::before { content: ''; position: absolute; inset: 0; background-image: url('../images/grafica_adonis_halftone_bg.png'); background-size: 300px; opacity: .12; }
.catalog-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--s-10); flex-wrap: wrap; }
.catalog-text h2 { color: var(--c-white); font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 4px; letter-spacing: .02em; }
.catalog-text p { color: rgba(255,255,255,.85); font-size: 16px; }
.catalog-buttons { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ==========================================================================
   CTA Final — White bg
   ========================================================================== */
.cta-final-white { background: var(--c-white); padding: var(--s-20) 0; text-align: center; }
.cta-final-white .cta-lead { font-size: 19px; color: var(--c-text-muted); font-style: italic; line-height: 1.5; margin-bottom: var(--s-4); }
.cta-final-white h2 { font-size: clamp(28px, 3.2vw, 36px); color: var(--c-navy); margin-bottom: var(--s-8); }
.cta-actions { display: flex; justify-content: center; gap: var(--s-3); flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-white); color: var(--c-text); padding: var(--s-12) 0 var(--s-5); position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--c-grey-100); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s-12); margin-bottom: var(--s-8); }
.footer-logo { height: 56px; margin-bottom: var(--s-6); }
.footer-cols-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); }
.footer-subcol h5 { color: var(--c-navy); font-size: 14px; font-weight: 700; margin-bottom: var(--s-3); }
.footer-subcol ul { display: flex; flex-direction: column; gap: var(--s-1); }
.footer-subcol li a { font-size: 14px; color: var(--c-text-muted); transition: color var(--t); }
.footer-subcol li a:hover { color: var(--c-magenta); }
.footer-cert-logo { display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.footer-cert-logo img { width: 60px; height: 60px; object-fit: contain; }
.footer-cert-logo .link-arrow { font-size: 13px; color: var(--c-magenta); font-weight: 600; }
.footer-cert-logo .link-arrow:hover { text-decoration: underline; }

/* Footer — search + horizontal menu */
.footer-search { margin-bottom: var(--s-6); }
.footer-search h5 { color: var(--c-navy); font-size: 13px; font-weight: 700; margin-bottom: var(--s-3); text-transform: uppercase; letter-spacing: .08em; }
.footer-search-form { display: flex; align-items: stretch; max-width: 360px; border: 1.5px solid var(--c-grey-100); border-radius: 10px; overflow: hidden; background: var(--c-white); transition: border-color var(--t), box-shadow var(--t); }
.footer-search-form:focus-within { border-color: var(--c-magenta); box-shadow: 0 0 0 3px rgba(229,0,125,.12); }
.footer-search-form input { flex: 1; padding: 10px 14px; border: 0; background: transparent; font-size: 14px; color: var(--c-text); }
.footer-search-form input:focus { outline: none; }
.footer-search-form input::placeholder { color: var(--c-text-muted); }
.footer-search-form button { background: var(--c-navy); color: var(--c-white); border: 0; padding: 0 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t); }
.footer-search-form button:hover { background: var(--c-magenta); }
.footer-search-form button svg { width: 18px; height: 18px; }

.footer-menu-horizontal { display: flex !important; flex-direction: row !important; flex-wrap: wrap; gap: 6px 18px !important; }
.footer-menu-horizontal li { margin: 0 !important; }
.footer-menu-horizontal li a { font-size: 14px; color: var(--c-text-muted); position: relative; padding: 2px 0; }
.footer-menu-horizontal li a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--c-magenta); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.footer-menu-horizontal li a:hover { color: var(--c-navy); }
.footer-menu-horizontal li a:hover::after { transform: scaleX(1); }
.footer-menu-horizontal li + li::before { content: '·'; color: var(--c-grey-100); margin-right: 12px; margin-left: -12px; }

.footer-info { display: flex; flex-direction: column; gap: var(--s-5); margin-bottom: var(--s-6); }
.footer-info-block h5 { color: var(--c-navy); font-size: 14px; font-weight: 700; margin-bottom: var(--s-2); }
.footer-info-block p { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; }
.footer-social { display: flex; gap: var(--s-2); }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--c-offwhite); display: flex; align-items: center; justify-content: center; color: var(--c-navy); transition: all var(--t); }
.footer-social a:hover { background: var(--c-magenta); color: var(--c-white); }
.footer-social svg { width: 16px; height: 16px; }

.footer-newsletter h5 { color: var(--c-navy); font-size: 14px; font-weight: 700; margin-bottom: var(--s-2); }
.footer-newsletter p { font-size: 13px; color: var(--c-text-muted); margin-bottom: var(--s-3); line-height: 1.5; }
.newsletter-form { display: grid; grid-template-columns: 1fr; gap: var(--s-2); max-width: 360px; }
.newsletter-form input { padding: 10px 14px; border: 1.5px solid var(--c-grey-100); border-radius: 8px; font-size: 14px; transition: border-color var(--t); }
.newsletter-form input:focus { outline: none; border-color: var(--c-magenta); }
.newsletter-form button { justify-self: start; }
.news-success { display: none; padding: 8px 12px; background: rgba(229,0,125,.08); color: var(--c-magenta-dark); border-radius: 8px; font-size: 13px; font-weight: 600; }
.news-success.show { display: block; }

/* Thank you page */
.thank-you { min-height: 70vh; display: flex; align-items: center; padding: 140px 0 80px; background: linear-gradient(135deg, var(--c-offwhite) 0%, var(--c-white) 100%); }
.thank-you-card { max-width: 640px; margin: 0 auto; text-align: center; background: var(--c-white); padding: var(--s-12) var(--s-10); border-radius: 24px; box-shadow: 0 30px 80px -20px rgba(0,19,38,.15), 0 0 0 1px rgba(0,19,38,.04); }
.thank-you-card .check-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #28ad16 0%, #20a013 100%); color: var(--c-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--s-6); box-shadow: 0 12px 30px -8px rgba(40,173,22,.5); }
.thank-you-card .check-icon svg { width: 40px; height: 40px; }
.thank-you-card h1 { color: var(--c-navy); font-size: clamp(28px, 3.2vw, 36px); margin-bottom: var(--s-4); }
.thank-you-card .lead { font-size: 18px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: var(--s-5); }
.thank-you-card p { color: var(--c-text-muted); font-size: 16px; margin-bottom: var(--s-4); }
.thank-you-card .btn { margin: var(--s-3) auto; }
.thank-you-card .link-back { display: inline-block; margin-top: var(--s-5); color: var(--c-magenta); font-weight: 600; font-size: 15px; }
.thank-you-card .link-back:hover { text-decoration: underline; }
.btn-large { padding: 14px 32px; font-size: 17px; }

/* Form (contato) */
.form-card form { display: flex; flex-direction: column; gap: 16px; }
.form-card form button:disabled { opacity: .55; cursor: not-allowed; }
.form-card form .cf-turnstile { min-height: 65px; }
.form-help { font-size: 13px; color: var(--c-text-muted); margin-top: 4px; }
.form-success { display: none; padding: 12px 16px; background: rgba(40,173,22,.1); color: #1a7d10; border-radius: 8px; font-size: 14px; font-weight: 600; margin-top: 8px; }
.form-success.show { display: block; }
.form-error { display: none; padding: 12px 16px; background: rgba(229,0,125,.1); color: var(--c-magenta-dark); border-radius: 8px; font-size: 14px; font-weight: 600; margin-top: 8px; }
.form-error.show { display: block; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--s-5); border-top: 1px solid var(--c-grey-100); font-size: 13px; color: var(--c-text-muted); }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: all 800ms cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero { padding: 40px 0 56px; min-height: 280px; background: var(--c-navy); color: var(--c-white); position: relative; overflow: hidden; display: flex; align-items: center; }

/* Hero icons + color variants per page - HORIZONTAL LAYOUT (icon + text side by side) */
.hero-icon-wrap { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 80px; margin-right: var(--s-6); }
.hero-icon-wrap .hero-icon { width: 70px; height: 70px; object-fit: contain; }

/* Horizontal hero layout - when hero has both icon and text */
section.page-hero.hero-flex .container { display: flex; align-items: flex-start; gap: var(--s-6); max-width: var(--container); margin: 0 auto; padding: 0 var(--s-6); }
section.page-hero.hero-flex .hero-text { flex: 1; }
section.page-hero.hero-flex .hero-text > .breadcrumb { margin-bottom: var(--s-2); }
section.page-hero.hero-flex .hero-text > h1 { margin-bottom: var(--s-3); }
.page-hero .container { position: relative; z-index: 2; }

/* Hero icons + color variants per page — more specific selectors to override .page-hero defaults */

/* Cartuchos hero — dark blue, white icon */
section.page-hero.hero-cartuchos { background: #004070; color: var(--c-white); padding: 80px 0; }
section.page-hero.hero-cartuchos .breadcrumb,
section.page-hero.hero-cartuchos .breadcrumb a { color: rgba(255,255,255,.75); }
section.page-hero.hero-cartuchos h1 { color: var(--c-white); }
section.page-hero.hero-cartuchos .lead { color: rgba(255,255,255,.85); }

/* Rótulos hero — light cyan, dark text + dark icon */
section.page-hero.hero-rotulos { background: #b5d4d9; color: var(--c-navy); padding: 80px 0; }
section.page-hero.hero-rotulos .hero-icon-wrap .hero-icon { filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(2476%) hue-rotate(199deg) brightness(95%) contrast(101%); }
section.page-hero.hero-rotulos .breadcrumb,
section.page-hero.hero-rotulos .breadcrumb a { color: rgba(0,25,38,.65); }
section.page-hero.hero-rotulos h1 { color: var(--c-navy); }
section.page-hero.hero-rotulos .lead { color: rgba(0,25,38,.85); }

/* Cintas hero — yellow/gold, white text + white icon */
section.page-hero.hero-cintas { background: var(--c-cintas); color: var(--c-white); padding: 80px 0; }
section.page-hero.hero-cintas .breadcrumb,
section.page-hero.hero-cintas .breadcrumb a { color: rgba(255,255,255,.9); }
section.page-hero.hero-cintas h1 { color: var(--c-white); }
section.page-hero.hero-cintas .lead { color: rgba(255,255,255,.92); }

/* Certificações hero — new dark blue (#002655), white text */
section.page-hero.hero-certificacoes { background: var(--c-certificacoes); color: var(--c-white); padding: 80px 0; }
section.page-hero.hero-certificacoes .breadcrumb,
section.page-hero.hero-certificacoes .breadcrumb a { color: rgba(255,255,255,.75); }
section.page-hero.hero-certificacoes h1 { color: var(--c-white); }
section.page-hero.hero-certificacoes .lead { color: rgba(255,255,255,.85); }

/* Sustentabilidade hero — FSC green (#005445), white text */
section.page-hero.hero-sustentabilidade { background: var(--c-sustentabilidade); color: var(--c-white); padding: 80px 0; }
section.page-hero.hero-sustentabilidade .breadcrumb,
section.page-hero.hero-sustentabilidade .breadcrumb a { color: rgba(255,255,255,.75); }
section.page-hero.hero-sustentabilidade h1 { color: var(--c-white); }
section.page-hero.hero-sustentabilidade .lead { color: rgba(255,255,255,.85); }

/* Contato (Fale Conosco) hero — new blue (#002655), white text */
section.page-hero.hero-contato { background: var(--c-certificacoes); color: var(--c-white); padding: 80px 0; }
section.page-hero.hero-contato .breadcrumb,
section.page-hero.hero-contato .breadcrumb a { color: rgba(255,255,255,.75); }
section.page-hero.hero-contato h1 { color: var(--c-white); }
section.page-hero.hero-contato .lead { color: rgba(255,255,255,.85); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(229,0,125,.15), transparent 50%); }
.page-hero .container { position: relative; max-width: 820px; }
.breadcrumb { display: flex; align-items: center; gap: var(--s-2); font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: var(--s-5); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb .sep { opacity: .4; }
.page-hero h1 { color: var(--c-white); font-size: clamp(40px, 5vw, 60px); margin-bottom: var(--s-5); }
.page-hero .lead { font-size: 19px; color: rgba(255,255,255,.78); max-width: 720px; }

/* ==========================================================================
   Content page (inner pages)
   ========================================================================== */
.content-page { padding: var(--s-20) 0; }
.content-page .container-narrow { max-width: 920px; }
.content-page h2 { font-size: 28px; margin: var(--s-12) 0 var(--s-4); padding-top: var(--s-8); border-top: 1px solid var(--c-grey-100); }
.content-page h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.content-page h2.text-center, .text-center { text-align: center; }
.content-page p { font-size: 17px; line-height: 1.7; color: var(--c-text); margin-bottom: var(--s-4); }
.content-page ul { margin: var(--s-4) 0 var(--s-6) var(--s-6); list-style: disc; color: var(--c-text); }
.content-page ul li { margin-bottom: var(--s-2); font-size: 16px; }
.content-page .lead { font-size: 20px; line-height: 1.6; color: var(--c-text-muted); font-weight: 500; }

/* ==========================================================================
   Form
   ========================================================================== */
.form-section { background: var(--c-offwhite); }
.form-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s-12); align-items: start; }
.form-grid .info h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: var(--s-5); }
.form-grid .info p { color: var(--c-text-muted); margin-bottom: var(--s-6); font-size: 17px; }
.contact-list { display: flex; flex-direction: column; gap: var(--s-5); margin-top: var(--s-8); }
.contact-list .item { display: flex; align-items: flex-start; gap: var(--s-4); }
.contact-list .item .icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--c-magenta); color: var(--c-white); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-list .item .icon svg { width: 20px; height: 20px; }
.contact-list .item h5 { font-size: 13px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; font-weight: 600; }
.contact-list .item p { color: var(--c-navy); font-weight: 600; font-size: 16px; margin: 0; }
.form-card { background: var(--c-white); border-radius: var(--radius-lg); padding: var(--s-10); box-shadow: var(--shadow); }
.form-card h3 { font-size: 24px; margin-bottom: var(--s-2); }
.form-card p.intro { color: var(--c-text-muted); margin-bottom: var(--s-6); font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-field { margin-bottom: var(--s-5); }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--c-navy); }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 14px 16px; border: 1.5px solid var(--c-grey-100); border-radius: 12px; background: var(--c-white); color: var(--c-text); font-size: 15px; transition: all var(--t); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--c-magenta); box-shadow: 0 0 0 4px rgba(229,0,125,.1); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; }
.form-success { display: none; padding: var(--s-6); background: rgba(229,0,125,.08); border: 1px solid var(--c-magenta); border-radius: 12px; color: var(--c-magenta-dark); margin-top: var(--s-5); font-weight: 600; }
.form-success.show { display: block; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-strip-stack { text-align: center; }
  .hero-strip-title { font-size: 24px; }
  .hero-strip-subtitle { font-size: 14px; }
  .numbers-grid { grid-template-columns: 200px 1fr; gap: var(--s-8); }
  .certs-list { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer-cols-wrap { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .catalog-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  :root { --s-24: 72px; --s-20: 56px; --s-16: 48px; --s-32: 96px; }
  .topbar-inner { height: 32px; font-size: 12px; }
  .site-nav, .header-cta .btn-primary, .header-cta .btn-green { display: none; }
  .menu-toggle { display: flex; }
  .hero-banner { height: 240px; }
  .numbers-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .numbers-halftone { max-width: 200px; margin: 0 auto; }
  .numbers-stats { grid-template-columns: 1fr; gap: var(--s-5); }
  .certs-list { grid-template-columns: repeat(2, 1fr); }
  .certs-title { text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .segment-circles { gap: var(--s-4); }
  .segment-circle .seg-circle-icon { width: 72px; height: 72px; }
  .segment-circle .seg-circle-icon svg { width: 28px; height: 28px; }
  .footer-cols-wrap { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--s-3); text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .catalog-buttons { justify-content: center; }
}
@media (max-width: 480px) {
  .certs-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Compat — classes usadas em páginas internas (footer antigo, blog, sust, contato)
   ========================================================================== */

/* Footer antigo (páginas internas) */
.footer-brand .logo { height: 56px; margin-bottom: var(--s-5); filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col h5 { color: var(--c-white); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; margin-bottom: var(--s-5); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a { font-size: 14px; transition: color var(--t); }
.footer-col a:hover { color: var(--c-magenta); }
.footer-contact { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-contact .item { display: flex; align-items: flex-start; gap: var(--s-3); font-size: 14px; }
.footer-contact .item svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--c-magenta); margin-top: 2px; }

/* Sustentabilidade (página interna) */
.sust-points { display: flex; flex-direction: column; gap: var(--s-4); margin-top: var(--s-8); }
.sust-point { display: flex; align-items: flex-start; gap: var(--s-4); }
.sust-point .check { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--c-cyan); color: var(--c-navy); display: flex; align-items: center; justify-content: center; }
.sust-point .check svg { width: 16px; height: 16px; }

/* Certificações página interna */
.certs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--s-5); margin-top: var(--s-12); }
.cert-card { background: var(--c-white); border: 1px solid var(--c-grey-100); border-radius: var(--radius); padding: var(--s-8) var(--s-5); text-align: center; transition: all var(--t); }
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cert-card .logo { width: 80px; height: 80px; margin: 0 auto var(--s-5); display: flex; align-items: center; justify-content: center; }
.cert-card .logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cert-card h4 { font-size: 17px; margin-bottom: var(--s-2); }
.cert-card p { font-size: 14px; color: var(--c-text-muted); line-height: 1.5; }

/* Quote (estrutura-fabril e sustentabilidade) */
.quote { background: var(--c-offwhite); border-left: 4px solid var(--c-magenta); padding: var(--s-6) var(--s-8); border-radius: 0 var(--radius) var(--radius) 0; margin: var(--s-8) 0; font-style: italic; color: var(--c-navy); font-size: 17px; line-height: 1.6; }
.quote cite { display: block; margin-top: var(--s-3); font-style: normal; font-size: 14px; color: var(--c-text-muted); font-weight: 600; }

/* Contact list (página contato) */
.contact-list .item .icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--c-magenta); color: var(--c-white); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-list .item .icon svg { width: 20px; height: 20px; }

/* Blog cards (página blog) */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); margin-top: var(--s-12); }
.blog-card { background: var(--c-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--t); border: 1px solid var(--c-grey-100); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--c-magenta), var(--c-blue)); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card .thumb .pattern { position: absolute; inset: 0; background-image: url('../images/grafica_adonis_halftone_color.png'); background-size: 200%; opacity: .2; mix-blend-mode: overlay; }
.blog-card .thumb .category { position: absolute; top: var(--s-3); left: var(--s-3); background: var(--c-white); color: var(--c-navy); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .1em; z-index: 1; }
.blog-card .body { padding: var(--s-6); }
.blog-card .meta { display: flex; gap: var(--s-3); font-size: 13px; color: var(--c-text-muted); margin-bottom: var(--s-3); }
.blog-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: var(--s-3); }
.blog-card p { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: var(--s-4); }
.blog-card .link { color: var(--c-magenta); font-weight: 700; font-size: 14px; }

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

/* ==========================================================================
   Estrutura Fabril — fotos de equipamentos + card G7
   ========================================================================== */
.fab-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6); margin: var(--s-8) 0; }
.fab-photo { background: var(--c-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--c-grey-100); display: flex; flex-direction: column; transition: all var(--t); }
.fab-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fab-photo-img { aspect-ratio: 4/3; overflow: hidden; background: var(--c-offwhite); }
.fab-photo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.fab-photo:hover .fab-photo-img img { transform: scale(1.05); }
.fab-photo figcaption { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); }
.fab-photo figcaption strong { font-size: 16px; color: var(--c-navy); font-weight: 700; }
.fab-photo figcaption span { font-size: 14px; color: var(--c-text-muted); line-height: 1.55; }

.cores-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; background: var(--c-amber); border-radius: var(--radius); overflow: hidden; margin: var(--s-6) 0; }
.cores-card-img { aspect-ratio: 1; overflow: hidden; }
.cores-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cores-card-text { padding: var(--s-8) var(--s-6); display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: var(--s-3); }
.cores-card-logo { width: 90px; height: 90px; background: var(--c-white); border-radius: var(--radius); padding: var(--s-3); display: flex; align-items: center; justify-content: center; }
.cores-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cores-card-text p { font-size: 15px; line-height: 1.6; color: var(--c-navy); margin: 0; }

@media (max-width: 768px) {
  .fab-photos { grid-template-columns: 1fr; }
  .cores-card { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Sustentabilidade — bloco da foto de floresta
   ========================================================================== */
.sust-visitas { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); margin: var(--s-8) 0; border-radius: var(--radius); overflow: hidden; }
.sust-visitas img { width: 100%; height: 280px; object-fit: cover; transition: transform var(--t); }
.sust-visitas img:hover { transform: scale(1.03); }
@media (max-width: 768px) { .sust-visitas { grid-template-columns: 1fr; } .sust-visitas img { height: 220px; } }

.sust-forest { margin: var(--s-10) 0; border-radius: var(--radius); overflow: hidden; }
.sust-forest img { width: 100%; height: auto; display: block; }

/* ==========================================================================
   Galeria de produtos (Cintas, Cartuchos, Rótulos, Encartes)
   ========================================================================== */
.cintas-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin: var(--s-8) 0; }
.cintas-item { background: var(--c-offwhite); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.cintas-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-slow); }
.cintas-item:hover img { transform: scale(1.04); }

.menu-hero-img { width: 100%; max-width: 720px; aspect-ratio: 4/3; margin: 0 auto var(--s-8); border-radius: var(--radius); overflow: hidden; background: var(--c-offwhite); }
.menu-hero-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .cintas-gallery { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================================
   Sustentabilidade — imagem ao lado do texto
   ========================================================================== */
.sust-with-image { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s-8); align-items: start; margin: var(--s-6) 0; }
.sust-with-image img { width: 100%; height: auto; border-radius: var(--radius); }
.sust-with-image-text p { font-size: 16px; line-height: 1.7; color: var(--c-text); margin: 0 0 var(--s-3); }
.sust-with-image-text p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .sust-with-image { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Certificados — cards clicáveis com link pra PDF
   ========================================================================== */
.cert-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; cursor: pointer; transition: all var(--t); }
.cert-card-link:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-magenta); }
.cert-card-link .cert-download {
  display: inline-block;
  margin-top: var(--s-3);
  padding: 8px 14px;
  background: var(--c-magenta);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
  align-self: center;
  transition: background var(--t);
}
.cert-card-link:hover .cert-download { background: var(--c-magenta-dark); }

/* ==========================================================================
   In Memoriam — Agostinho Comelato
   ========================================================================== */
.in-memoriam { display: grid; grid-template-columns: 220px 1fr; gap: var(--s-8); align-items: center; margin-top: var(--s-10); padding: var(--s-8); background: var(--c-offwhite); border-radius: var(--radius); border-left: 4px solid var(--c-magenta); }
.in-memoriam-img { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--c-navy); }
.in-memoriam-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.in-memoriam-text blockquote { margin: 0 0 var(--s-5) 0; padding: 0; border: none; }
.in-memoriam-text blockquote p { font-size: 17px; line-height: 1.65; color: var(--c-navy); font-style: italic; margin: 0; }
.in-memoriam-author { margin: 0; display: flex; flex-direction: column; gap: 4px; }
.in-memoriam-author strong { color: var(--c-magenta); font-size: 15px; font-weight: 700; }
.in-memoriam-author span { color: var(--c-navy); font-size: 13px; opacity: .8; }

@media (max-width: 768px) {
  .in-memoriam { grid-template-columns: 1fr; text-align: center; }
  .in-memoriam-img { max-width: 200px; margin: 0 auto; }
}
