@import url("https://fonts.googleapis.com/css2?family=Sour+Gummy:wdth,wght@100..125,100..900&display=swap");

:root {
  --blue-950: #00246f;
  --blue-900: #00368f;
  --blue-800: #004fbd;
  --blue-700: #0769dc;
  --yellow: #ffca08;
  --yellow-dark: #f0ae00;
  --red: #ec2833;
  --ink: #121927;
  --muted: #596579;
  --line: #e3e9f3;
  --soft: #f5f8fd;
  --white: #fff;
  --shadow-sm: 0 10px 26px rgba(0, 43, 128, .09);
  --shadow: 0 20px 44px rgba(0, 43, 128, .15);
  --radius: 18px;
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 35, 111, .98), rgba(0, 55, 145, .98) 58%, rgba(0, 70, 174, .98));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: box-shadow .22s ease, background .22s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(0, 21, 76, .22); }
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; gap: 25px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand-image img { width: 156px; max-height: 88px; object-fit: contain; filter: drop-shadow(0 7px 12px rgba(0, 20, 68, .22)); transform: scale(1.08); transform-origin: center; }
.site-nav { display: flex; flex: 1; align-items: center; justify-content: center; gap: 24px; min-width: 0; }
.site-nav > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: var(--header-height);
  color: rgba(255,255,255,.95);
  font-size: .77rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color .2s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--yellow); }
.nav-dropdown { position: relative; }
.nav-chevron { width: 7px; height: 7px; margin-top: -4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
.nav-submenu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  width: 235px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  color: #fff;
  background: #002b7f;
  box-shadow: 0 20px 36px rgba(0,18,70,.3);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-submenu::before { content: ""; position: absolute; inset: -12px 0 auto; height: 14px; }
.nav-submenu a { display: block; padding: 10px 12px; border-radius: 9px; font-size: .76rem; font-weight: 700; }
.nav-submenu a:hover { color: var(--blue-950); background: var(--yellow); }
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 7px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 28px; height: 3px; margin: 5px auto; border-radius: 10px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.site-header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Buttons and shared typography */
.btn {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-small { min-height: 38px; padding-inline: 17px; font-size: .68rem; }
.btn-yellow { color: var(--blue-950); background: var(--yellow); box-shadow: 0 10px 22px rgba(255, 194, 0, .25); }
.btn-yellow:hover { background: #ffdb3a; box-shadow: 0 14px 28px rgba(255, 194, 0, .3); }
.btn-blue { color: #fff; background: var(--blue-800); box-shadow: 0 10px 22px rgba(0, 79, 189, .22); }
.btn-blue:hover { background: var(--blue-700); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.8); background: transparent; }
.btn-outline-light:hover { color: var(--blue-950); background: #fff; }

h1, h2, h3, p { overflow-wrap: anywhere; }
.hero h1,
.page-showcase h1,
.page-hero h1,
.section h2,
.section-heading h2,
.blue-band h2,
.cta-band h2 {
  margin: 7px 0 15px;
  font-family: "Sour Gummy", "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -.012em;
  line-height: .98;
  text-transform: uppercase;
}
.section { padding: 66px 0; }
.section-heading { max-width: 720px; margin: 0 auto 30px; text-align: center; }
.section h2,
.section-heading h2,
.blue-band h2 { color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.35rem); }
.section-kicker,
.eyebrow {
  display: inline-block;
  color: var(--blue-700);
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.section-kicker.light { color: #fff; }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 52px; }
.split-grid p,
.story-panel p,
.info-card p,
.values-box p,
.contact-panel p,
.text-page p { color: var(--muted); font-size: .91rem; }
.soft-section { background: linear-gradient(180deg, #f4f8fe, #fff); }
.center-actions { display: flex; justify-content: center; margin-top: 27px; }

/* Home hero */
.hero,
.page-showcase,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 20, 70, .92) 0%, rgba(0, 33, 96, .72) 44%, rgba(0, 35, 105, .30) 100%),
    url("../img/ajustes_imagem_site/Imagem de fundo.jpeg") center center / cover no-repeat;
}
.hero::before,
.page-showcase::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.13) 8% 8.2%, transparent 8.2% 16%),
    linear-gradient(0deg, transparent 0 18%, rgba(255,255,255,.1) 18% 18.3%, transparent 18.3% 36%);
  background-size: 190px 115px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.38) 55%, transparent 85%);
}
.hero::after,
.page-showcase::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 115px;
  width: 175px;
  height: 175px;
  opacity: .35;
  background-image: radial-gradient(rgba(255,255,255,.85) 1.6px, transparent 1.8px);
  background-size: 13px 13px;
  transform: rotate(-8deg);
}
.hero { min-height: 800px; padding: 112px 0 165px; }

.hero-grid { position: relative; z-index: 4; display: grid; min-height: 520px; grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr); align-items: center; gap: 10px; }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { max-width: 660px; color: #fff; font-size: clamp(3rem, 4.1vw, 3.72rem); line-height: .91; }
.hero h1 span { color: var(--yellow); }
.hero p { max-width: 555px; margin: 0; color: rgba(255,255,255,.91); font-size: .96rem; line-height: 1.48; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 23px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 19px; margin-top: 27px; color: #f2f6ff; }
.hero-trust span { display: inline-flex; max-width: 160px; align-items: center; gap: 8px; font-size: .69rem; font-weight: 800; line-height: 1.15; }
.hero-trust svg,
.stats-strip svg,
.benefit-row svg,
.mini-card svg,
.process svg,
.page-showcase-highlights svg,
.footer-contact svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-trust svg { width: 30px; height: 30px; flex: 0 0 30px; padding: 5px; color: var(--yellow); border: 2px solid rgba(255,202,8,.7); border-radius: 50%; }
.hero-media { position: relative; display: grid; min-width: 0; min-height: 520px; place-items: center; }
.hero-client-frame {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(112%, 650px);
  height: 510px;
  margin-left: auto;
  overflow: visible;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hero-client-frame::before { display: none; }
.hero-client-image { position: relative; z-index: 1; width: 108%; height: 108%; object-fit: contain; transform: translateX(2%); filter: drop-shadow(0 24px 30px rgba(0,18,70,.32)); }
.quality-badge { position: absolute; z-index: 5; top: -12px; right: -18px; display: grid; width: 116px; height: 116px; place-items: center; align-content: center; border: 5px solid var(--yellow); border-radius: 50%; color: #fff; background: var(--blue-800); box-shadow: 0 0 0 5px #fff, 0 14px 24px rgba(0,25,88,.3); text-align: center; text-transform: uppercase; animation: float 4.8s ease-in-out infinite; }
.quality-badge svg { width: 34px; height: 34px; margin-bottom: 2px; color: var(--yellow); fill: none; stroke: currentColor; stroke-width: 2; }
.quality-badge strong, .quality-badge span { display: block; font-size: .61rem; font-weight: 900; line-height: 1.05; }
.quality-badge span { color: var(--yellow); font-size: .55rem; }
.hero-stats-group { position: absolute; z-index: 8; left: 50%; bottom: 16px; display: block; width: min(1040px, calc(100% - 180px)); transform: translateX(-50%); }
.hero-side-photo { position: absolute; z-index: 2; left: -140px; bottom: -22px; width: 178px; height: 224px; overflow: visible; filter: drop-shadow(0 16px 18px rgba(0,35,111,.24)); pointer-events: none; }
.hero-side-photo img { width: 100%; height: 100%; object-fit: contain; }
.hero-wave { position: absolute; z-index: 1; inset: auto 0 0; height: 145px; background: var(--yellow); clip-path: polygon(0 38%, 18% 78%, 42% 56%, 70% 63%, 100% 18%, 100% 100%, 0 100%); }
.hero-wave::after { content: ""; position: absolute; inset: 67px 0 0; background: #fff; clip-path: polygon(0 22%, 19% 61%, 43% 37%, 72% 51%, 100% 9%, 100% 100%, 0 100%); }
.stats-strip {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  padding: 13px 22px;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 999px;
  background: linear-gradient(100deg, #003d9e, #0063d6);
  box-shadow: 0 18px 34px rgba(0,35,111,.25);
}
.stats-strip strong { display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 9px; padding: 4px 16px; border-right: 1px solid rgba(255,255,255,.2); color: var(--yellow); font-size: .93rem; font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.stats-strip strong:last-child { border-right: 0; }
.stats-strip strong > span { display: grid; gap: 2px; color: #fff; line-height: 1.1; text-transform: none; }
.stats-strip strong b { color: var(--yellow); font-size: .93rem; font-weight: 900; text-transform: uppercase; }
.stats-strip strong small { color: #fff; font-size: .64rem; font-weight: 600; }
.stats-strip svg { width: 34px; height: 34px; flex: 0 0 34px; padding: 7px; border: 2px solid rgba(255,202,8,.75); border-radius: 50%; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(3deg); } }

/* Home content */
.about-preview { position: relative; padding-top: 82px; }
.about-preview::before,
.home-blog-section::before { content: ""; position: absolute; width: 135px; height: 160px; opacity: .2; background-image: radial-gradient(var(--blue-700) 1.4px, transparent 1.6px); background-size: 13px 13px; pointer-events: none; }
.about-preview::before { left: -25px; bottom: 20px; transform: rotate(-8deg); }
.about-preview h2 { color: var(--blue-950); }
.about-preview p { margin: 0 0 12px; }
.about-preview .btn { margin-top: 11px; }
.client-image-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 230px; align-items: center; }
.client-image-panel > img { width: 100%; height: 345px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.client-image-panel aside,
.values-box,
.contact-panel,
.story-panel,
.info-card,
.content-card,
.mini-card,
blockquote,
.text-page-card { border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.client-image-panel aside { position: relative; z-index: 2; margin-left: -38px; padding: 23px; border-radius: 18px; box-shadow: var(--shadow); }
.client-image-panel h3,
.values-box h3,
.contact-panel h2,
.page-showcase-card h3 { margin: 0 0 15px; color: var(--blue-800); font-size: .83rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: var(--muted); font-size: .79rem; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: .05em; display: grid; width: 16px; height: 16px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue-800); font-size: .62rem; font-weight: 900; }

.products-section { background: linear-gradient(180deg, #fff, #f7f9fd); scroll-margin-top: 100px; }
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 19px; }
.page-home #produtos-home .product-grid { max-width: 960px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-inline: auto; }
.product-card { display: flex; min-width: 0; min-height: 322px; flex-direction: column; align-items: center; padding: 17px 16px 19px; text-align: center; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { display: grid; width: 100%; min-height: 185px; aspect-ratio: 1 / 1; margin-bottom: 12px; overflow: hidden; place-items: center; border-radius: 14px; background: linear-gradient(180deg, #fff, #f7f9fc); }
.product-image img { width: 100%; height: 100%; padding: 4px; object-fit: contain; image-rendering: auto; transform: none; }
.product-category { display: none; }
.product-card h3 { margin: 0 0 9px; color: var(--ink); font-size: .86rem; font-weight: 900; text-transform: uppercase; }
.product-card p { flex: 1; margin: 0 0 15px; color: var(--muted); font-size: .75rem; line-height: 1.42; }
.product-card a,
.content-card a { display: inline-flex; min-height: 32px; align-items: center; justify-content: center; padding: 0 18px; border-radius: 999px; color: #fff; background: var(--blue-800); font-size: .65rem; font-weight: 900; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.product-card a:hover,
.content-card a:hover { background: var(--blue-700); transform: translateY(-1px); }

.blue-band { position: relative; overflow: hidden; padding: 55px 0 0; color: #fff; background: linear-gradient(100deg, rgba(0,38,124,.9), rgba(0,88,202,.82)), url("../img/bg-home.png") center center / cover no-repeat; }
.blue-band::after { content: ""; position: absolute; left: -40px; bottom: -20px; width: 190px; height: 160px; opacity: .22; background-image: radial-gradient(#fff 1.5px, transparent 1.7px); background-size: 13px 13px; }
.band-grid { position: relative; z-index: 2; display: grid; min-height: 390px; grid-template-columns: minmax(0, 1fr) minmax(250px, 280px); align-items: stretch; gap: 42px; }
.blue-band h2 { max-width: 620px; color: #fff; }
.benefit-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; margin-top: 25px; padding-bottom: 36px; }
.benefit-row article { text-align: center; color: #dce8ff; }
.benefit-row svg { width: 45px; height: 45px; margin: 0 auto 9px; padding: 9px; color: var(--yellow); border: 2px solid rgba(255,202,8,.65); border-radius: 50%; background: rgba(255,202,8,.08); }
.benefit-row strong { display: block; margin-bottom: 4px; color: #fff; font-size: .67rem; font-weight: 900; text-transform: uppercase; }
.benefit-row span { display: block; font-size: .62rem; line-height: 1.28; }
.band-client-frame {
  position: relative;
  align-self: center;
  width: 100%;
  height: 390px;
  min-height: 390px;
  margin: 0;
  overflow: visible;
  isolation: isolate;
  background: transparent;
}
.band-client-frame::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -82px;
  display: block;
  width: 330px;
  height: 390px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 58%, rgba(255,235,105,.95) 0%, rgba(255,202,8,.62) 36%, rgba(255,202,8,.2) 60%, transparent 74%);
  filter: blur(2px);
  pointer-events: none;
}
.band-client-frame::after {
  display: none;
}
.band-client-frame img {
  position: absolute;
  z-index: 1;
  top: auto;
  bottom: -1px;
  left: 50%;
  width: auto;
  height: 112%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  border-radius: 0;
  filter: drop-shadow(0 14px 18px rgba(0,37,105,.28));
}

.benefits-section { padding-top: 55px; }
.benefit-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 21px; }
.mini-card { min-height: 170px; padding: 24px 20px; border-radius: 17px; text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-card svg { width: 55px; height: 55px; margin: 0 auto 14px; color: var(--blue-800); }
.mini-card:nth-child(3) svg { color: var(--red); fill: var(--red); stroke: var(--red); }
.mini-card strong { display: block; color: var(--ink); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.mini-card p { margin: 7px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.4; }

.process-section { background: #fff; }
.process-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 440px; align-items: center; gap: 32px; }
.process { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.process::before { content: ""; position: absolute; top: 39px; left: 11%; right: 11%; border-top: 2px dashed #bdc8d8; }
.process article { position: relative; text-align: center; }
.process article > span { position: relative; z-index: 2; display: grid; width: 76px; height: 76px; margin: 0 auto 13px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-800); background: #fff; box-shadow: var(--shadow-sm); }
.process article:first-child > span { color: #25b45c; }
.process article:last-child > span { color: var(--red); }
.process svg { width: 35px; height: 35px; }
.process i { position: absolute; z-index: 3; top: 67px; left: calc(50% - 47px); display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: var(--blue-950); background: var(--yellow); font-size: .65rem; font-style: normal; font-weight: 900; }
.process strong { display: block; color: var(--ink); font-size: .67rem; font-weight: 900; text-transform: uppercase; }
.process p { margin: 6px 0 0; color: var(--muted); font-size: .69rem; line-height: 1.38; }
.process-content { min-width: 0; text-align: center; }
.process-content .section-heading { text-align: center; }
.process-content .section-heading h2 { margin-inline: auto; }
.process-client-image { position: relative; width: min(100%, 390px); aspect-ratio: 373 / 754; overflow: hidden; align-self: center; justify-self: center; filter: drop-shadow(0 24px 28px rgba(0,28,84,.24)); }
.process-phone-image { display: block; width: 289.55%; max-width: none; height: auto; object-fit: contain; filter: none; transform: translate(-28.8%, -11.85%); }
.generic-phone { position: relative; width: 210px; height: 420px; padding: 10px; border: 2px solid #303641; border-radius: 42px; background: linear-gradient(145deg, #202631, #05070b); box-shadow: 0 26px 42px rgba(0,28,84,.3), inset 0 0 0 1px rgba(255,255,255,.12); }
.generic-phone::before { content: ""; position: absolute; z-index: 3; top: 17px; left: 50%; width: 62px; height: 17px; border-radius: 20px; background: #090c12; transform: translateX(-50%); }
.generic-phone::after { content: ""; position: absolute; top: 92px; right: -5px; width: 4px; height: 58px; border-radius: 0 4px 4px 0; background: #222936; }
.generic-phone-screen { display: grid; height: 100%; overflow: hidden; grid-template-rows: 66px 1fr 48px; border-radius: 32px; background: #efeae2; }
.phone-chat-header { display: flex; align-items: center; gap: 9px; padding: 19px 12px 8px; color: #fff; background: linear-gradient(135deg, #075e54, #128c7e); }
.phone-chat-avatar { display: grid; width: 34px; height: 34px; flex: 0 0 34px; overflow: hidden; place-items: center; padding: 2px; border-radius: 50%; background: #fff; }
.phone-chat-avatar img { width: 100%; height: 100%; object-fit: contain; }
.phone-chat-header strong, .phone-chat-header small { display: block; }
.phone-chat-header strong { font-size: .72rem; line-height: 1; }
.phone-chat-header small { margin-top: 3px; color: rgba(255,255,255,.8); font-size: .51rem; }
.phone-chat-body { position: relative; display: flex; overflow: hidden; flex-direction: column; gap: 8px; padding: 15px 10px; background: #efeae2; }
.phone-message { position: relative; z-index: 2; max-width: 86%; margin: 0; padding: 8px 9px; border-radius: 10px; opacity: 0; color: #27313c; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.08); font-size: .55rem; line-height: 1.35; transform: translateY(8px) scale(.98); }
.phone-message.sent { align-self: flex-end; background: #d9fdd3; }
.phone-chat-watermark { position: absolute; z-index: 0; top: 50%; left: 50%; width: 145px; max-height: 145px; object-fit: contain; opacity: .075; filter: grayscale(1); transform: translate(-50%, -50%); }
.phone-message.message-one { animation: phone-message-in .42s ease .45s forwards; }
.phone-message.message-two { animation: phone-message-in .42s ease 1.75s forwards; }
.phone-message.message-three { animation: phone-message-in .42s ease 4s forwards; }
.phone-typing { position: relative; z-index: 2; display: flex; width: 42px; min-height: 25px; align-items: center; justify-content: center; gap: 3px; padding: 6px 8px; border-radius: 12px; opacity: 0; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.08); animation: phone-typing-show 1.45s ease 2.45s both; }
.phone-typing i { width: 4px; height: 4px; border-radius: 50%; background: #8b949c; animation: phone-dot .7s ease-in-out infinite alternate; }
.phone-typing i:nth-child(2) { animation-delay: .16s; }
.phone-typing i:nth-child(3) { animation-delay: .32s; }
@keyframes phone-message-in { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes phone-typing-show { 0%,100% { opacity: 0; transform: translateY(5px); } 12%,82% { opacity: 1; transform: translateY(0); } }
@keyframes phone-dot { to { opacity: .35; transform: translateY(-2px); } }
.phone-chat-input { display: flex; align-items: center; gap: 7px; margin: 6px; padding: 0 8px 0 11px; border-radius: 22px; color: #8b949c; background: #fff; font-size: .55rem; }
.phone-chat-input span { flex: 1; }
.phone-chat-input svg { width: 23px; height: 23px; padding: 5px; border-radius: 50%; color: #fff; background: #25d366; }

.testimonials { background: linear-gradient(180deg, #fff, #f7f9fd); }
.testimonial-slider { position: relative; padding: 0 5px 34px; }
.testimonial-viewport { overflow: hidden; padding: 5px; }
.testimonial-track { display: flex; gap: 22px; transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.testimonial-slide { flex: 0 0 calc((100% - 44px) / 3); }
.testimonial-static { padding-bottom: 0; }
.testimonial-static .testimonial-viewport { overflow: visible; }
.testimonial-static .testimonial-track { flex-wrap: wrap; transform: none !important; }
blockquote { position: relative; min-height: 195px; margin: 0; padding: 25px; border-radius: 17px; color: var(--muted); }
blockquote::before { content: "\201C"; display: block; height: 28px; color: var(--blue-700); font-family: Georgia, serif; font-size: 3.3rem; font-weight: 900; line-height: .8; }
blockquote p { min-height: 55px; margin: 3px 0 11px; font-size: .75rem; line-height: 1.45; }
.stars { margin-bottom: 11px; color: var(--yellow-dark); font-size: 1.05rem; letter-spacing: 2px; }
blockquote cite { display: block; color: var(--ink); font-size: .76rem; font-style: normal; font-weight: 900; }
blockquote cite::before { content: none; }
blockquote cite span { display: block; margin-top: 3px; color: var(--muted); font-size: .66rem; font-weight: 500; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img,
.testimonial-initial { width: 48px; height: 48px; flex: 0 0 48px; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--yellow), var(--shadow-sm); }
.testimonial-author img { object-fit: cover; }
.testimonial-initial { display: grid; place-items: center; color: #fff; background: var(--blue-800); font-size: 1.15rem; font-weight: 900; }
.testimonial-dots { position: absolute; inset: auto 0 0; display: flex; justify-content: center; gap: 7px; }
.testimonial-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #bdc9db; cursor: pointer; }
.testimonial-dots button.is-active { width: 27px; border-radius: 999px; background: var(--blue-800); }

.home-blog-section { position: relative; background: var(--soft); }
.home-blog-section::before { right: -25px; top: 55px; transform: rotate(9deg); }
.home-blog-grid { max-width: 1080px; margin-inline: auto; }
.home-blog-grid .content-card { background: #fff; }
.home-blog-grid .content-card-image img { padding: 0; object-fit: cover; }
.home-blog-grid .content-card a { align-self: center; }
.home-blog-empty { max-width: 680px; margin: 0 auto; padding: 24px; border: 1px dashed #c5d2e5; border-radius: 16px; color: var(--muted); background: #fff; text-align: center; }
.home-blog-empty p { margin: 0; }

/* Shared inner-page hero */
.page-showcase { padding: 135px 0 92px; }
.page-showcase::after { top: 105px; }
.page-showcase-grid { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); align-items: center; gap: 24px; }
.page-showcase-copy { max-width: 680px; }
.page-showcase-kicker { display: inline-flex; margin-bottom: 12px; color: var(--yellow); font-size: .75rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
.page-showcase h1 { margin: 0 0 17px; color: #fff; font-size: clamp(2.7rem, 5vw, 4.2rem); }
.page-showcase h1 span { display: block; color: var(--yellow); }
.page-showcase p { max-width: 590px; margin: 0; color: rgba(255,255,255,.9); font-size: .96rem; }
.page-showcase-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 25px; }
.page-showcase-highlights span { display: flex; min-height: 58px; align-items: center; gap: 8px; padding: 9px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; color: #eef5ff; background: rgba(0,30,100,.25); font-size: .72rem; font-weight: 800; line-height: 1.2; }
.page-showcase-highlights svg { width: 27px; height: 27px; flex: 0 0 27px; color: var(--yellow); }
.page-showcase-media { position: relative; display: grid; min-height: 470px; align-items: end; justify-items: center; }
.page-showcase-frame { display: grid; width: min(112%, 600px); height: 450px; overflow: visible; place-items: center; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.page-showcase-image { width: 110%; height: 110%; object-fit: contain; filter: drop-shadow(0 24px 34px rgba(0,18,70,.3)); }
.page-showcase-card { position: relative; z-index: 2; width: min(90%, 315px); margin: -58px auto 0 -18px; padding: 21px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); background: #fff; box-shadow: var(--shadow); }

/* Inner-page content */
.inner-section { background: #fff; }
.detail-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr); align-items: stretch; gap: 31px; }
.story-panel { padding: 32px; border-radius: 21px; }
.story-panel h2,
.inner-split h2,
.text-page h2 { color: var(--blue-950); line-height: 1.06; }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.metric-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card { position: relative; min-height: 160px; padding: 25px; overflow: hidden; border-radius: 18px; }
.info-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--yellow), var(--blue-700)); }
.info-card strong { display: block; color: var(--blue-800); font-size: .82rem; font-weight: 900; text-transform: uppercase; }
.info-card p { margin-bottom: 0; font-size: .82rem; }
.inner-split { align-items: center; }
.values-box,
.contact-panel { padding: 29px; border-radius: 20px; }
.text-page { max-width: 870px; }
.text-page-card { padding: 33px; border-radius: 20px; }
.text-page h2 { margin: 24px 0 8px; font-size: 1.15rem; }
.text-page h2:first-child { margin-top: 0; }

.content-card-grid { display: grid; gap: 20px; }
.content-card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.content-card { display: flex; min-height: 372px; flex-direction: column; gap: 11px; padding: 17px 17px 21px; border-radius: 19px; transition: transform .2s ease, box-shadow .2s ease; }
.content-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.content-card-image { width: 100%; height: 170px; overflow: hidden; border-radius: 14px; background: linear-gradient(180deg, #fff, #f2f6fc); }
.content-card-image img { width: 100%; height: 100%; padding: 8px; object-fit: contain; }
.content-card-category { display: inline-flex; align-self: flex-start; min-height: 22px; align-items: center; padding: 0 10px; border-radius: 999px; color: var(--blue-800); background: #edf4ff; font-size: .63rem; font-weight: 900; text-transform: uppercase; }
.content-card h3 { margin: 0; color: var(--blue-900); font-size: .89rem; font-weight: 900; line-height: 1.25; text-transform: uppercase; }
.content-card p { margin: 0 0 12px; color: var(--muted); font-size: .79rem; line-height: 1.45; }
.content-card a { align-self: flex-start; margin-top: auto; }

/* Product detail */
.product-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 14px; color: rgba(255,255,255,.75); font-size: .72rem; font-weight: 700; }
.product-breadcrumb a:hover { color: var(--yellow); }
.product-breadcrumb strong { max-width: 260px; overflow: hidden; color: #fff; text-overflow: ellipsis; white-space: nowrap; }
.product-detail-hero-media { align-items: center; }
.product-detail-hero-image { max-width: 480px; max-height: 390px; object-fit: contain; border-radius: 24px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr); align-items: center; gap: 58px; }
.product-detail-image-card { display: grid; min-height: 500px; padding: 28px; overflow: hidden; place-items: center; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(145deg, #fff, #eef4ff); box-shadow: var(--shadow); }
.product-detail-image-card img { width: 100%; height: 440px; object-fit: contain; border-radius: 18px; }
.product-detail-content { max-width: 600px; }
.product-detail-content h2 { margin: 8px 0 17px; color: var(--blue-950); font-family: "Sour Gummy", "Arial Black", Arial, sans-serif; font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 800; line-height: .98; text-transform: uppercase; }
.product-detail-content > p { margin: 0 0 24px; color: var(--muted); font-size: .98rem; }
.product-detail-list { gap: 13px; margin-bottom: 28px; }
.product-detail-list li { font-size: .88rem; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.related-products-section .product-grid { max-width: 850px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-inline: auto; }

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 34px; }
  .product-detail-image-card { min-height: 420px; }
  .product-detail-image-card img { height: 360px; }
  .product-detail-content { max-width: none; }
}

@media (max-width: 680px) {
  .product-detail-image-card { min-height: 330px; padding: 18px; }
  .product-detail-image-card img { height: 290px; }
  .product-detail-actions { display: grid; }
  .product-detail-actions .btn { width: 100%; }
  .related-products-section .product-grid { grid-template-columns: 1fr; }
}
/* Blog detail */
.blog-detail-hero h1 { max-width: 720px; font-size: clamp(2.3rem, 4.7vw, 3.75rem); }
.blog-detail-hero-media { align-items: center; }
.blog-detail-hero-image { width: 100%; height: 100%; padding: 12px; object-fit: contain; border-radius: 24px; background: #fff; }
.blog-detail-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 22px; color: #fff; font-size: .73rem; font-weight: 800; }
.blog-detail-meta span { display: inline-flex; align-items: center; gap: 7px; }
.blog-detail-meta svg { width: 18px; height: 18px; color: var(--yellow); }
.blog-detail-section { background: #fff; }
.blog-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 42px; }
.blog-article { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.blog-article p { margin: 0 0 20px; color: var(--ink); font-size: .98rem; line-height: 1.78; }
.blog-article p:last-child { margin-bottom: 0; }
.blog-detail-cta { position: sticky; top: 110px; padding: 27px; border-radius: 22px; color: #fff; background: linear-gradient(145deg, var(--blue-950), var(--blue-700)); box-shadow: var(--shadow); }
.blog-detail-cta .section-kicker { color: var(--yellow); }
.blog-detail-cta h2 { margin: 8px 0 12px; color: #fff; font-size: 1.55rem; }
.blog-detail-cta p { margin: 0 0 20px; color: #e2edff; font-size: .82rem; }
.related-posts-grid { max-width: 980px; margin-inline: auto; }
@media (max-width: 900px) { .blog-detail-layout { grid-template-columns: 1fr; } .blog-detail-cta { position: static; } }
@media (max-width: 680px) { .blog-article { padding: 22px; } .blog-detail-hero h1 { font-size: 2rem; } }
/* Contact */
.contact-section { background: linear-gradient(180deg, #fff, var(--soft)); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; gap: 31px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 29px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-form label { display: grid; gap: 7px; color: var(--blue-950); font-size: .81rem; font-weight: 800; }
.contact-form label:nth-last-of-type(1),
.contact-form .alert,
.contact-form button,
.form-note { grid-column: 1 / -1; }
input, select, textarea { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid #d8e1ef; border-radius: 11px; outline: none; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(7,105,220,.12); }
textarea { resize: vertical; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; }
.alert { margin: 0; padding: 13px 15px; border-radius: 11px; font-weight: 800; }
.alert.success { color: #075221; background: #dcfce7; }
.alert.error { color: #8a1022; background: #ffe4e8; }
.contact-panel .btn { margin: 10px 0; }
.contact-panel dl { display: grid; gap: 6px; margin: 24px 0 0; }
.contact-panel dt { color: var(--blue-800); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.contact-panel dd { margin: 0 0 9px; color: var(--muted); font-size: .86rem; }

/* CTA and footer */
.cta-band { position: relative; overflow: hidden; padding: 35px 0; color: #fff; background: linear-gradient(95deg, #00318a, #0057c4); }
.cta-band::after { content: ""; position: absolute; right: -25px; top: -25px; width: 190px; height: 160px; opacity: .25; background-image: radial-gradient(#fff 1.5px, transparent 1.7px); background-size: 13px 13px; }
.cta-grid { position: relative; z-index: 2; display: grid; min-height: 155px; grid-template-columns: 235px minmax(0, 1fr) auto; align-items: center; gap: 24px; }
.cta-visual { position: relative; align-self: stretch; min-height: 155px; }
.cta-client-photo { position: absolute; left: -4px; bottom: -44px; width: 230px; height: 250px; object-fit: contain; filter: drop-shadow(0 14px 18px rgba(0,18,70,.25)); }
.cta-band h2 { max-width: 690px; margin: 0 0 7px; color: #fff; font-size: clamp(1.45rem, 2.6vw, 2rem); }
.cta-band p { margin: 0; color: #e2edff; font-size: .86rem; }
.cta-actions { display: grid; gap: 10px; }
.site-footer { color: #dce8ff; background: #00246f; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .82fr .9fr 1.15fr .76fr; align-items: start; gap: 28px; padding: 43px 0 32px; }
.footer-brand img { width: 158px; max-height: 112px; margin: 0 0 14px; transform: scale(1.15); transform-origin: left center; }
.footer-grid h3 { margin: 0 0 13px; color: #fff; font-size: .72rem; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.footer-grid > div > a,
.footer-grid > div > p { display: block; margin: 0 0 7px; color: #dce8ff; font-size: .75rem; line-height: 1.42; }
.footer-grid > div > a:hover { color: var(--yellow); }
.footer-contact { display: flex !important; align-items: flex-start; gap: 8px; }
.footer-contact svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 2px; color: #fff; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; background: #fff; transition: transform .2s ease, background .2s ease; }
.social-links a:hover { background: var(--yellow); transform: translateY(-2px); }
.social-links a[aria-label="WhatsApp"] { background: #25d366; }
.social-links img { width: 16px; height: 16px; object-fit: contain; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.13); font-size: .7rem; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom b { color: var(--red); }

.whatsapp-float { position: fixed; z-index: 90; right: 21px; bottom: 21px; display: grid; width: 59px; height: 59px; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #25d366; box-shadow: 0 13px 28px rgba(0, 112, 54, .35); transition: transform .2s ease, background .2s ease; }
.whatsapp-float:hover { background: #1fbd59; transform: translateY(-3px); }
.whatsapp-float::before { content: ""; position: absolute; inset: -5px; border: 2px solid rgba(37,211,102,.58); border-radius: 50%; animation: pulse 2s ease-out infinite; }
.whatsapp-float-icon { display: grid; width: 42px; height: 42px; place-items: center; }
.whatsapp-float-icon img { width: 25px; height: 25px; filter: brightness(0) invert(1); }
@keyframes pulse { 0% { opacity: .8; transform: scale(.86); } 75%,100% { opacity: 0; transform: scale(1.55); } }

/* Content must remain visible without JavaScript. */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease var(--delay, 0ms), transform .65s cubic-bezier(.22, 1, .36, 1) var(--delay, 0ms); will-change: opacity, transform; }
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); will-change: auto; }

@media (max-width: 1100px) {
  .site-nav { gap: 15px; }
  .site-nav > a, .nav-dropdown > a { font-size: .71rem; }
  .site-header .btn-small { display: none; }
  .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr); }
  .hero-stats-group { width: min(880px, calc(100% - 150px)); }
  .hero-side-photo { width: 158px; height: 205px; }
  .testimonial-slide { flex-basis: calc((100% - 22px) / 2); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .content-card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .nav-wrap { justify-content: space-between; }
  .brand-image img { width: 142px; max-height: 68px; transform: scale(1.22); }
  .menu-toggle { display: block; order: 3; }
  .site-nav { position: fixed; inset: var(--header-height) 0 auto; display: block; max-height: calc(100vh - var(--header-height)); padding: 14px 20px 22px; overflow-y: auto; background: #00246f; box-shadow: 0 20px 35px rgba(0,18,70,.3); opacity: 0; visibility: hidden; transform: translateY(-18px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .site-header.nav-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a,
  .nav-dropdown > a { min-height: 48px; width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-dropdown { width: 100%; }
  .nav-submenu { position: static; width: 100%; padding: 4px 0 9px 15px; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-submenu a { padding-block: 7px; color: #cddfff; }
  .hero { min-height: auto; padding: 108px 0 58px; }
  .hero-grid,
  .page-showcase-grid,
  .detail-grid,
  .split-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 26px; }
  .hero h1 { max-width: 680px; }
  .hero-client-frame { width: min(100%, 540px); margin: 0 auto; }
  .quality-badge { right: max(0px, calc(50% - 285px)); }
  .hero-wave { display: none; }
  .hero-stats-group { position: relative; left: auto; bottom: auto; display: block; width: min(100% - 40px, 720px); margin: 28px auto 0; transform: none; }
  .hero-side-photo { display: none; }
  .stats-strip { position: relative; left: auto; right: auto; bottom: auto; width: min(100% - 40px, 720px); grid-template-columns: repeat(2, 1fr); margin: 28px auto 0; border-radius: 25px; transform: none; }
  .hero-stats-group .stats-strip { width: 100%; margin: 0; }
  .stats-strip strong:nth-child(2) { border-right: 0; }
  .stats-strip strong:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .client-image-panel { grid-template-columns: 1fr; }
  .client-image-panel aside { width: calc(100% - 40px); margin: -24px auto 0; }
  .band-grid { grid-template-columns: 1fr 280px; }
  .band-client-frame { width: 100%; min-height: 360px; }
  .benefit-row { grid-template-columns: repeat(3, 1fr); }
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .process-wrap { grid-template-columns: 1fr; }
  .process-client-image { position: relative; width: min(100%, 390px); aspect-ratio: 373 / 754; overflow: hidden; align-self: center; justify-self: center; filter: drop-shadow(0 24px 28px rgba(0,28,84,.24)); }
  .page-showcase { padding: 112px 0 70px; }
  .page-showcase-media { min-height: 390px; }
  .page-showcase-frame { width: min(100%, 520px); }
  .page-showcase-card { margin-left: auto; }
  .content-card-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-grid { grid-template-columns: 150px minmax(0,1fr); }
  .cta-actions { grid-column: 2; grid-template-columns: repeat(2, max-content); justify-content: start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 52px 0; }
  .process-client-image { position: relative; width: min(100%, 390px); aspect-ratio: 373 / 754; overflow: hidden; align-self: center; justify-self: center; filter: drop-shadow(0 24px 28px rgba(0,28,84,.24)); }
  .hero { padding-top: 96px; }
  .hero h1 { font-size: 2.35rem; line-height: .98; }
  .hero p, .page-showcase p { font-size: .9rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr; }
  .hero-trust span { max-width: none; }
  .hero-client-frame { height: min(94vw, 420px); border-radius: 23px; }
  .quality-badge { top: -8px; right: -2px; width: 88px; height: 88px; border-width: 4px; box-shadow: 0 0 0 3px #fff, 0 12px 20px rgba(0,25,88,.28); }
  .quality-badge svg { width: 27px; height: 27px; }
  .quality-badge strong, .quality-badge span { font-size: .48rem; }
  .stats-strip { width: calc(100% - 28px); grid-template-columns: 1fr; padding: 9px 16px; }
  .stats-strip strong,
  .stats-strip strong:nth-child(2) { justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .stats-strip strong:last-child { border-bottom: 0; }
  .section h2, .section-heading h2, .blue-band h2 { font-size: 1.65rem; }
  .product-grid,
  .benefit-cards,
  .process,
  .instagram-grid,
  .metric-grid,
  .metric-grid-3,
  .metric-grid-4,
  .content-card-grid-3,
  .content-card-grid-4,
  .contact-form { grid-template-columns: 1fr; }
  .product-card { min-height: 305px; }
  .band-grid { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: repeat(2, 1fr); }
  .band-client-frame { width: min(300px, calc(100vw - 40px)); min-height: 350px; margin: 18px auto; }
  .testimonial-slider { padding-inline: 32px; }
  .testimonial-slide { flex-basis: 100%; }
  .testimonial-static { padding-inline: 5px; }
  .process::before { display: none; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .page-showcase h1 { font-size: 2.35rem; }
  .page-showcase-highlights { grid-template-columns: 1fr; }
  .page-showcase-media { min-height: 0; }
  .page-showcase-frame { height: min(82vw, 370px); border-radius: 22px; }
  .page-showcase-card { width: calc(100% - 24px); margin-top: -35px; }
  .story-panel, .values-box, .contact-panel, .text-page-card { padding: 22px; }
  .contact-form { padding: 21px; }
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-visual { width: 180px; min-height: 120px; margin: 0 auto; }
  .cta-actions { grid-column: auto; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { display: grid; grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1, .page-showcase h1 { font-size: 2rem; }
  .benefit-row, .instagram-grid, .footer-grid { grid-template-columns: 1fr; }
  .client-image-panel > img { height: 280px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 55px; height: 55px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .phone-message { opacity: 1 !important; transform: none !important; animation-delay: 0s !important; }
  .phone-typing { display: none; }
}

/* Final content refinements */
.hero-stats-group .stats-strip { width: 100%; margin-inline: auto; text-align: center; }
.product-whatsapp-form { display: grid; gap: 10px; margin: 24px 0 18px; padding: 20px; border: 1px solid #c9d8ee; border-radius: 18px; background: #f7faff; }
.product-whatsapp-form label { color: var(--blue-950); font-size: .82rem; font-weight: 900; }
.product-whatsapp-form textarea { width: 100%; min-height: 110px; resize: vertical; padding: 13px 14px; border: 1px solid #b8c8df; border-radius: 12px; color: var(--ink); background: #fff; font: inherit; line-height: 1.45; }
.product-whatsapp-form textarea:focus { border-color: var(--blue-700); outline: 3px solid rgba(0,94,211,.13); }
.product-whatsapp-form .btn { width: 100%; border: 0; cursor: pointer; }
.product-whatsapp-form small { color: var(--muted); font-size: .68rem; line-height: 1.4; }
.page-servicos .content-card-image { height: 225px; background: linear-gradient(145deg, #f7faff, #eaf2ff); }
.page-servicos .content-card-image img { padding: 5px; object-fit: contain; image-rendering: auto; }
.page-blog .page-showcase svg,
.page-blog .blog-detail-cta svg { color: var(--yellow); }
.blog-detail-hero .page-showcase-frame { overflow: visible; border: 0; background: transparent; box-shadow: none; }
.blog-detail-hero-image { padding: 0; background: transparent; filter: drop-shadow(0 24px 30px rgba(0,18,70,.28)); }
.blog-detail-meta span { position: relative; color: var(--yellow); }
.blog-detail-meta span::before { display: none; content: none; }
.related-posts-section .content-card { border: 1px solid rgba(0,73,170,.12); background: #fff; box-shadow: var(--shadow-sm); }
.related-posts-section .content-card-image { height: 205px; background: transparent; }
.related-posts-section .content-card-image img { padding: 0; object-fit: contain; filter: drop-shadow(0 14px 18px rgba(0,35,111,.16)); }
.related-posts-section .content-card-category { color: var(--blue-950); background: var(--yellow); }
.related-posts-section .content-card a { color: var(--blue-950); background: var(--yellow); }
.related-posts-section .content-card a:hover { background: #ffda3c; }
.product-detail-hero .page-showcase-frame,
.blog-detail-hero .page-showcase-frame {
  width: min(100%, 560px);
  height: 440px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff9dc, #f7faff);
  box-shadow: 0 24px 46px rgba(0,18,70,.28);
}
.product-detail-hero-image,
.blog-detail-hero-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  object-fit: contain;
  border-radius: 20px;
  background: transparent;
  filter: none;
}
.product-detail-hero .page-showcase-frame {
  box-sizing: border-box;
  padding: 24px;
  place-items: center;
}
.product-detail-hero-image,
.product-detail-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-detail-image-card {
  box-sizing: border-box;
  overflow: hidden;
}
.product-image { background: linear-gradient(145deg, #fff9dc, #f2f6fc); }
.page-blog .content-card-image,
.home-blog-section .content-card-image { background: linear-gradient(145deg, #fff9dc, #f2f6fc); }
.page-blog .content-card-image img,
.home-blog-section .content-card-image img { padding: 0; object-fit: contain; }
@media (max-width: 900px) {
  .page-servicos .content-card-image { height: 210px; }
}
