/*
Theme Name: AmeriCamp One Page
Theme URI: https://www.americampembalagens.com.br/
Author: Desenvolvimento personalizado
Description: Tema institucional one page da AmeriCamp, com vitrine de produtos, captação de leads, WhatsApp e CRM interno.
Version: 2.0.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: americamp
*/

:root {
  --navy: #071b2c;
  --blue-900: #0a3155;
  --blue-800: #0b4477;
  --blue-700: #08619e;
  --blue-100: #e9f4fb;
  --green: #8fc640;
  --green-dark: #6fa92e;
  --whatsapp: #20bd63;
  --ink: #102238;
  --text: #43546a;
  --muted: #6d7b8d;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --line: #dce6ee;
  --shadow-sm: 0 12px 32px rgba(8, 42, 70, .08);
  --shadow-lg: 0 28px 70px rgba(5, 36, 61, .16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 15px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.skip-link:focus { top: 12px; }

.site-topbar {
  color: #d9e6ee;
  background: var(--navy);
  font-size: 12px;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 23px;
}

.topbar-links a { transition: color .2s ease; }
.topbar-links a:hover { color: var(--green); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(213, 225, 234, .88);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header { top: 32px; }

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 142px;
  display: inline-flex;
  align-items: center;
}

.brand img { width: 142px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav a {
  position: relative;
  color: #31445a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.1px;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--green);
  transition: right .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--blue-700); }
.site-nav a:hover::after,
.site-nav a.is-active::after { right: 0; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-900);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-small { min-height: 44px; padding: 11px 17px; font-size: 12px; }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  box-shadow: 0 12px 30px rgba(8, 97, 158, .22);
}
.button-primary:hover { box-shadow: 0 16px 34px rgba(8, 97, 158, .3); }
.button-secondary {
  color: var(--blue-800);
  background: #fff;
  border-color: #cddce7;
}
.button-secondary:hover { border-color: var(--blue-700); }
.button-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 12px 28px rgba(32, 189, 99, .24);
}
.button-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(143,198,64,.14), transparent 24%),
    linear-gradient(135deg, #f7fbfd 0%, #eff7fb 55%, #e9f4f9 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(21,81,122,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,81,122,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-layout {
  position: relative;
  min-height: 660px;
  padding-block: 80px 65px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
}

.hero-content { position: relative; z-index: 2; }

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow i {
  width: 22px;
  height: 2px;
  background: var(--green);
}

.hero h1,
.section-heading h2,
.about-content h2,
.contact-copy h2 {
  margin: 16px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -3.2px;
  text-wrap: balance;
}

.hero-content > p {
  max-width: 610px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  margin: 29px 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hero-proof > div {
  min-width: 132px;
  padding: 1px 20px;
  border-left: 1px solid #cddce7;
}

.hero-proof > div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { display: block; color: var(--blue-800); font-size: 19px; line-height: 1.2; }
.hero-proof span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }

.hero-showcase {
  position: relative;
  min-height: 490px;
}

.showcase-halo {
  position: absolute;
  width: 430px;
  height: 430px;
  top: 20px;
  left: 55px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(8,97,158,.12), rgba(143,198,64,.2));
}

.showcase-halo::before,
.showcase-halo::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(8,97,158,.14);
  border-radius: 50%;
}

.showcase-halo::before { inset: -28px; }
.showcase-halo::after { inset: -57px; opacity: .55; }

.showcase-card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(218,229,236,.92);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.showcase-main {
  width: 315px;
  min-height: 430px;
  left: 108px;
  top: 25px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-main > img {
  width: 230px;
  height: 275px;
  object-fit: contain;
  margin: 4px auto 5px;
}

.showcase-label {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--blue-800);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.showcase-main > div { align-self: stretch; padding-top: 12px; border-top: 1px solid var(--line); }
.showcase-main b,
.showcase-float b { display: block; color: var(--ink); font-size: 18px; }
.showcase-main small,
.showcase-float small { display: block; color: var(--muted); font-size: 11px; }

.showcase-float {
  width: 190px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.showcase-float img {
  width: 67px;
  height: 67px;
  object-fit: contain;
  background: #f8fafb;
  border-radius: 12px;
}

.showcase-float b { font-size: 13px; }
.showcase-float-top { right: -15px; top: 92px; }
.showcase-float-bottom { left: 0; bottom: 28px; }

.showcase-badge {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 57px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #284033;
  background: #f4faeb;
  border: 1px solid #dcecc7;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
}

.showcase-badge span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.hero-partners {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(187,207,220,.75);
}

.hero-partners > span { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.hero-partners > div { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 55px); }
.hero-partners b { color: #6e8091; font-size: 13px; letter-spacing: .3px; }

.section { padding-block: 100px; }

.section-heading { margin-bottom: 42px; }
.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: end;
  gap: clamp(35px, 7vw, 100px);
}

.section-heading h2,
.about-content h2,
.contact-copy h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.2vw, 51px);
  letter-spacing: -2.3px;
}

.section-heading p,
.about-content > p,
.contact-copy > p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 14px;
}

.solution-card {
  position: relative;
  min-height: 360px;
  padding: 27px 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: #c3d8e6;
  box-shadow: var(--shadow-sm);
}

.solution-primary {
  color: #fff;
  background: linear-gradient(150deg, var(--blue-900), var(--blue-800));
  border-color: transparent;
}

.solution-number {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #b4c1cb;
  font-size: 11px;
  font-weight: 800;
}

.solution-primary .solution-number { color: rgba(255,255,255,.55); }

.solution-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 15px;
}

.solution-icon svg { width: 26px; height: 26px; }
.solution-primary .solution-icon { color: #fff; background: rgba(255,255,255,.12); }

.solution-card h3 { margin: 62px 0 8px; font-size: 22px; letter-spacing: -.6px; }
.solution-card p { margin: 0; color: var(--text); font-size: 13px; line-height: 1.65; }
.solution-primary p { max-width: 210px; color: #c9d9e6; }

.solution-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 6px 10px;
  color: #50708a;
  background: #f1f6f9;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.solution-primary .solution-tag { z-index: 2; color: #eaf4df; background: rgba(143,198,64,.17); }
.solution-primary > img {
  position: absolute;
  width: 220px;
  right: -45px;
  bottom: -25px;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.22));
}

.products-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(14, 108, 174, .34), transparent 28%),
    linear-gradient(155deg, #061827, #0a3155);
}

.light-heading h2 { color: #fff; }
.light-heading p { color: #b9cad6; }
.light-heading .kicker { color: #a9d873; }

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.text-link span { color: var(--green); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.product-card {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,.2);
}

.product-image {
  position: relative;
  height: 218px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f9fbfc, #eef4f7);
}

.product-image > img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform .25s ease;
}

.product-card:hover .product-image > img { transform: scale(1.04); }

.product-tag {
  position: absolute;
  left: 13px;
  top: 13px;
  padding: 5px 9px;
  color: var(--blue-800);
  background: rgba(255,255,255,.94);
  border: 1px solid #e3ebf0;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.product-placeholder {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 900;
}

.product-content { padding: 20px; }
.product-content h3 { margin: 0 0 7px; font-size: 18px; line-height: 1.25; letter-spacing: -.4px; }
.product-content p { min-height: 45px; margin: 0 0 17px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.product-link {
  width: 100%;
  padding: 13px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-700);
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.product-link span { font-size: 17px; }

.catalog-note {
  margin-top: 28px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 15px;
  color: #dce9f1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
}

.catalog-note > div {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #b9e183;
  background: rgba(143,198,64,.13);
  border-radius: 12px;
}

.catalog-note svg { width: 21px; height: 21px; }
.catalog-note p { margin: 0; }
.catalog-note b { display: block; color: #fff; font-size: 13px; }
.catalog-note p span { display: block; color: #aec0cd; font-size: 11px; }
.catalog-note > a { color: #fff; font-size: 11px; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }

.about-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 73%, rgba(143,198,64,.2), transparent 27%),
    linear-gradient(145deg, #edf6fa, #dfeef5);
  border-radius: var(--radius-lg);
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -70px;
  border: 1px solid rgba(9,91,145,.18);
  border-radius: 50%;
}

.about-panel {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  top: 30px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-900), var(--blue-800));
  border-radius: 21px;
  box-shadow: var(--shadow-lg);
}

.about-panel .kicker { color: #a9d873; }
.about-panel strong { max-width: 390px; display: block; margin-top: 13px; font-size: 26px; line-height: 1.2; letter-spacing: -1px; }
.about-panel p { max-width: 370px; margin: 11px 0 0; color: #bdd0dd; font-size: 12px; }

.about-products {
  position: absolute;
  left: 65px;
  right: 25px;
  bottom: 10px;
}

.about-products img { width: 100%; max-height: 270px; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(18,54,76,.15)); }
.about-content > p { max-width: 610px; }

.benefit-list { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefit-list > div {
  padding: 17px;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 11px;
  background: var(--surface-soft);
  border: 1px solid #e3ebf0;
  border-radius: 14px;
}

.benefit-list > div > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: #fff;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(8, 70, 115, .08);
}

.benefit-list p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.benefit-list b { display: block; margin-bottom: 3px; color: var(--ink); font-size: 13px; }

.process-section { padding-block: 90px; background: var(--surface-soft); }
.centered { max-width: 720px; margin-inline: auto; text-align: center; }
.centered h2 { margin-inline: auto; }
.centered p { max-width: 600px; margin-inline: auto; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-grid > div {
  position: relative;
  padding: 29px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
}

.process-grid > div > span {
  position: absolute;
  right: 20px;
  top: 17px;
  color: #b7c6d1;
  font-size: 11px;
  font-weight: 900;
}

.process-grid svg {
  width: 31px;
  height: 31px;
  color: var(--blue-700);
}

.process-grid h3 { margin: 31px 0 7px; font-size: 18px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.contact-section {
  background:
    radial-gradient(circle at 10% 100%, rgba(143,198,64,.12), transparent 25%),
    #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.contact-copy > p { max-width: 520px; }
.contact-options { margin-top: 30px; display: grid; gap: 10px; }
.contact-options > a {
  max-width: 430px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: border-color .2s ease, transform .2s ease;
}

.contact-options > a:hover { transform: translateX(3px); border-color: #bad1df; }
.contact-options > a > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 11px;
}

.contact-options svg { width: 21px; height: 21px; }
.contact-options small { display: block; color: var(--muted); font-size: 10px; }
.contact-options b { display: block; margin-top: 2px; font-size: 13px; }

.lead-form {
  padding: 31px;
  display: grid;
  gap: 15px;
  background: #fff;
  border: 1px solid #dce6ed;
  border-radius: 23px;
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 5px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span { font-size: 19px; font-weight: 850; letter-spacing: -.5px; }
.form-heading small { color: var(--green-dark); font-size: 10px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.lead-form label,
.wa-modal label {
  display: grid;
  gap: 6px;
}

.lead-form label > span,
.wa-modal label > span {
  color: #33485e;
  font-size: 11px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.wa-modal input {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #d8e3ea;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input,
.lead-form select,
.wa-modal input { min-height: 47px; }
.lead-form textarea { resize: vertical; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.wa-modal input:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(8,97,158,.1);
}

.lead-form [aria-invalid="true"],
.wa-modal [aria-invalid="true"] { border-color: #d63c43; }

.consent {
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 9px !important;
}

.consent input { min-height: auto; margin-top: 3px; }
.consent > span { color: var(--muted) !important; font-size: 9px !important; font-weight: 500 !important; line-height: 1.45; }
.consent a { color: var(--blue-700); text-decoration: underline; }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-status { min-height: 18px; color: var(--blue-700); font-size: 11px; font-weight: 750; }
.form-status.is-error { color: #bd2e35; }
.form-status.is-success { color: #44811c; }

.site-footer {
  color: #c0d0dc;
  background: #061725;
}

.footer-grid {
  padding-block: 65px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 50px;
}

.footer-brand > img {
  width: 150px;
  padding: 7px 10px;
  background: #fff;
  border-radius: 10px;
}

.footer-brand p { max-width: 300px; margin: 18px 0; color: #8ea3b1; font-size: 12px; }
.footer-whatsapp {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9fda73;
  background: none;
  border: 0;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.footer-whatsapp svg { width: 18px; height: 18px; }
.footer-grid h3 { margin: 2px 0 18px; color: #fff; font-size: 12px; letter-spacing: .4px; }
.footer-grid nav,
.footer-grid address { display: grid; gap: 10px; font-style: normal; }
.footer-grid nav a,
.footer-grid address a,
.footer-grid address span { color: #8ea3b1; font-size: 11px; transition: color .2s ease; }
.footer-grid nav a:hover,
.footer-grid address a:hover { color: #fff; }

.panel-access {
  margin-top: 22px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
  font-weight: 850;
}

.panel-access span { color: var(--green); font-size: 16px; }
.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #708592;
  font-size: 10px;
}

.developer-signature { display: flex; align-items: center; gap: 11px; }
.developer-signature img { max-width: 110px; max-height: 31px; width: auto; }
.developer-placeholder {
  padding: 6px 10px;
  color: #a6bbc8;
  border: 1px dashed #4b6371;
  border-radius: 6px;
  font-size: 9px;
}

.whatsapp-float {
  position: fixed;
  right: 21px;
  bottom: 21px;
  z-index: 70;
  min-height: 55px;
  padding: 8px 16px 8px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: var(--whatsapp);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 17px 38px rgba(24,139,72,.34);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(24,139,72,.42); }
.whatsapp-float svg { width: 35px; height: 35px; stroke-width: 1.55; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(3,16,27,.68);
  backdrop-filter: blur(5px);
}

.modal-backdrop[hidden] { display: none; }
.wa-modal {
  position: relative;
  width: min(100%, 405px);
  padding: 29px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 36px 90px rgba(0,0,0,.28);
  animation: modal-in .22s ease both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 11px;
  width: 35px;
  height: 35px;
  color: #6c7b88;
  background: #f2f6f8;
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.modal-brand { display: flex; align-items: center; gap: 9px; }
.modal-brand > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--whatsapp);
  border-radius: 12px;
}

.modal-brand svg { width: 23px; height: 23px; }
.modal-brand small { color: var(--green-dark); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .5px; }
.wa-modal h2 { max-width: 320px; margin: 21px 0 8px; font-size: 27px; line-height: 1.1; letter-spacing: -1px; }
.wa-modal > p { margin: 0 0 19px; color: var(--muted); font-size: 12px; }
.wa-modal form { display: grid; gap: 12px; }
.modal-privacy { display: block; margin-top: 13px; color: #8a98a5; text-align: center; font-size: 9px; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 150px 1fr auto; gap: 18px; }
  .site-nav { gap: 18px; }
  .hero-layout { gap: 25px; }
  .showcase-main { left: 72px; }
  .showcase-float-top { right: -5px; }
  .solution-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .solution-grid .solution-card:last-child { grid-column: 2 / 4; min-height: 210px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 20px; }
}

@media (max-width: 880px) {
  .admin-bar .site-header { top: 46px; }
  .header-inner { grid-template-columns: 1fr auto; min-height: 70px; }
  .brand { width: 128px; }
  .brand img { width: 128px; }
  .nav-toggle { display: block; grid-column: 2; grid-row: 1; }
  .header-cta { display: none; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    padding: 10px;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 11px 12px; border-radius: 9px; }
  .site-nav a:hover { background: var(--surface-soft); }
  .site-nav a::after { display: none; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-layout { grid-template-columns: 1fr; padding-top: 67px; }
  .hero-content { max-width: 690px; }
  .hero-showcase { width: min(100%, 570px); min-height: 500px; margin: 5px auto 0; }
  .showcase-main { left: 50%; transform: translateX(-50%); }
  .showcase-float-top { right: 0; }
  .showcase-float-bottom { left: 0; }
  .hero-partners { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 20px; }
  .heading-split { grid-template-columns: 1fr; gap: 10px; }
  .heading-split > p,
  .heading-split > div:last-child { max-width: 690px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-grid .solution-card:last-child { grid-column: auto; min-height: 360px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .about-visual { max-width: 620px; width: 100%; }
  .contact-copy { max-width: 680px; }
  .lead-form { max-width: 680px; width: 100%; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-topbar { display: none; }
  .section { padding-block: 74px; }
  .hero-layout { min-height: auto; padding-block: 56px 42px; }
  .hero h1 { font-size: clamp(39px, 12vw, 53px); letter-spacing: -2.5px; }
  .hero-content > p { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .hero-proof > div { min-width: 0; padding-inline: 14px; }
  .hero-proof > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-showcase { min-height: 450px; transform: scale(.9); margin: -15px auto -25px; }
  .showcase-main { width: 285px; min-height: 400px; }
  .showcase-main > img { width: 210px; height: 250px; }
  .showcase-float { width: 160px; }
  .showcase-float img { width: 54px; height: 54px; }
  .showcase-float-top { right: -24px; }
  .showcase-float-bottom { left: -25px; }
  .showcase-badge { right: -25px; }
  .hero-partners > div { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 10px; }
  .hero-partners b { padding: 9px 10px; background: rgba(255,255,255,.6); border-radius: 8px; }
  .section-heading h2,
  .about-content h2,
  .contact-copy h2 { font-size: 36px; letter-spacing: -1.7px; }
  .solution-grid,
  .product-grid,
  .benefit-list,
  .process-grid { grid-template-columns: 1fr; }
  .solution-card,
  .solution-grid .solution-card:last-child { min-height: 300px; }
  .solution-card h3 { margin-top: 43px; }
  .product-image { height: 230px; }
  .catalog-note { grid-template-columns: 42px 1fr; }
  .catalog-note > a { grid-column: 1 / -1; }
  .about-visual { min-height: 470px; }
  .about-panel { left: 16px; right: 16px; top: 16px; padding: 23px; }
  .about-panel strong { font-size: 22px; }
  .about-products { left: 20px; right: 15px; }
  .process-section { padding-block: 72px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 22px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; display: block; }
  .footer-bottom { padding-block: 22px; flex-direction: column; align-items: flex-start; }
  .whatsapp-float { width: 57px; height: 57px; padding: 10px; border-radius: 50%; }
  .whatsapp-float span { display: none; }
  .whatsapp-float svg { width: 37px; height: 37px; }
  .wa-modal { padding: 24px 20px; }
}

@media (max-width: 430px) {
  .hero-showcase { width: 108%; margin-left: -4%; transform: scale(.82); }
  .showcase-float-top { right: -30px; }
  .showcase-float-bottom { left: -30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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