/* ==========================================================================
   Missão Consultoria — modern static experience
   ========================================================================== */

:root {
  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-button: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --color-brand-ink: #111c26;
  --color-brand-gold: #faa719;
  --color-brand-cream: #f9f7dc;
  --color-brand-blue: #37546f;
  --color-brand-green: #18ba60;
  --color-ink: var(--color-brand-ink);
  --color-ink-2: var(--color-brand-blue);
  --color-body: #3f5364;
  --color-muted: #62798c;
  --color-surface: #ffffff;
  --color-soft: #f8faf2;
  --color-soft-2: #f1efd0;
  --color-line: #d9e0e5;
  --color-accent: var(--color-brand-gold);
  --color-accent-strong: #a36906;
  --color-teal: var(--color-brand-blue);
  --color-green: var(--color-brand-green);

  --radius-xs: 4px;
  --radius: 8px;
  --shadow-sm: 0 8px 24px rgba(17, 28, 38, 0.08);
  --shadow-md: 0 18px 44px rgba(17, 28, 38, 0.14);
  --shadow-lg: 0 28px 70px rgba(17, 28, 38, 0.22);
  --content-width: 80vw;
  --container-max: 80vw;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  line-height: 1.65;
  background: var(--color-surface);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
.page,
.section,
.page-hero,
.hero {
  max-width: 100%;
  overflow-x: clip;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
p { margin: 0 0 16px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.12;
  margin: 0 0 16px;
  font-weight: 750;
  letter-spacing: 0;
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  transform: translateY(-140%);
  background: var(--color-accent);
  color: var(--color-ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(250, 167, 25, 0.75);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.eyebrow,
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-button);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero-badge {
  color: var(--color-brand-cream);
  background: rgba(17, 28, 38, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  max-width: min(100%, 760px);
  justify-content: center;
  text-align: center;
  line-height: 1.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  font-family: var(--font-button);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.1;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  max-width: 100%;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--color-accent); color: #1b1608; }
.btn-accent:hover { background: #fbc556; }
.btn-outline { background: transparent; color: var(--color-surface); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--color-surface); color: var(--color-ink); }
.btn-dark { background: var(--color-ink); color: #fff; }
.btn-dark:hover { background: var(--color-teal); }
.btn-sm { min-height: 38px; padding: 9px 14px; font-size: 0.82rem; }
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 700;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 235, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.page-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(17, 28, 38, 0.08);
}
.page-home .site-header.is-scrolled {
  background: rgba(17, 28, 38, 0.78);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}
.header-top {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: var(--content-width);
  margin: 0 auto;
}
.logo-group { display: flex; align-items: center; gap: 8px; min-width: 170px; }
.logo-group img { height: 42px; width: auto; object-fit: contain; }
.main-nav { justify-self: center; }
.main-nav ul { display: flex; align-items: center; gap: 22px; list-style: none; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  color: var(--color-ink);
  font-family: var(--font-button);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-home .site-header:not(.is-scrolled) .main-nav a,
.page-home .site-header:not(.is-scrolled) .header-social a {
  color: #fff;
}
.page-home .site-header:not(.is-scrolled) .header-social a {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}
.page-home .site-header:not(.is-scrolled) .logo-group img {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28));
}
.page-home .site-header.is-scrolled .main-nav a {
  color: #eef4f5;
}
.page-home .site-header.is-scrolled .main-nav a:hover,
.page-home .site-header.is-scrolled .main-nav a.active {
  color: var(--color-brand-cream);
}
.page-home .site-header.is-scrolled .header-social a {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Standard header treatment across every page. */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header:not(.is-scrolled) .main-nav a,
.site-header:not(.is-scrolled) .header-social a,
.site-header.is-scrolled .main-nav a,
.site-header.is-scrolled .header-social a {
  color: #fff;
}
.site-header:not(.is-scrolled) .header-social a,
.site-header.is-scrolled .header-social a {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}
.site-header:not(.is-scrolled) .logo-group img {
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28));
}
.site-header.is-scrolled {
  background: rgba(17, 28, 38, 0.78);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.active,
.site-header:not(.is-scrolled) .main-nav a:hover,
.site-header:not(.is-scrolled) .main-nav a.active {
  color: var(--color-brand-cream);
}
.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after { transform: scaleX(1); }
.main-nav a:hover,
.main-nav a.active { color: var(--color-accent-strong); }
.caret { font-style: normal; font-size: 0.75rem; }
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 270px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  width: 100%;
  padding: 11px 12px;
  border-radius: var(--radius-xs);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--color-body);
}
.site-header .main-nav .dropdown li a {
  color: var(--color-body);
}
.dropdown li a:hover { background: var(--color-soft); color: var(--color-ink); }
@media (min-width: 981px) {
  .site-header:not(.is-scrolled) .main-nav .dropdown li a,
  .site-header.is-scrolled .main-nav .dropdown li a,
  .page-home .site-header:not(.is-scrolled) .main-nav .dropdown li a {
    color: var(--color-ink);
  }
  .site-header:not(.is-scrolled) .main-nav .dropdown li a:hover,
  .site-header:not(.is-scrolled) .main-nav .dropdown li a.active,
  .site-header.is-scrolled .main-nav .dropdown li a:hover,
  .site-header.is-scrolled .main-nav .dropdown li a.active {
    background: var(--color-soft);
    color: var(--color-ink);
  }
}
.header-social { display: flex; gap: 8px; }
.header-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-ink);
  font-weight: 800;
  font-size: 0.78rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.header-social i {
  font-size: 1rem;
  line-height: 1;
}
.header-social a:hover { transform: translateY(-2px); background: var(--color-ink); color: #fff; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-ink);
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--color-ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 26%, rgba(250,167,25,0.28), transparent 26%),
    radial-gradient(circle at 70% 76%, rgba(55,84,111,0.34), transparent 30%),
    linear-gradient(90deg, rgba(17,28,38,0.96) 0%, rgba(17,28,38,0.78) 45%, rgba(17,28,38,0.42) 100%),
    linear-gradient(180deg, rgba(17,28,38,0.15), rgba(17,28,38,0.82));
}
.hero::after {
  display: none;
}
.hero-fallback,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video { opacity: 0; transition: opacity 700ms ease; }
.hero-video.is-ready { opacity: 1; }
.hero-inner {
  position: relative;
  z-index: 3;
  width: var(--content-width);
  display: block;
  padding: 132px 0 92px;
  text-align: center;
}
.hero-copy {
  max-width: 100%;
  margin: 0 auto;
}
.hero-inner h1 {
  max-width: 100%;
  color: #fff;
  font-size: clamp(2rem, 4.05vw, 3.9rem);
  line-height: 1.04;
  margin-bottom: 22px;
}
.hero-inner p {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #eef4f5;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.quote-select {
  min-width: min(100%, 460px);
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: var(--radius);
  padding: 0 16px;
  background: rgba(255,255,255,0.94);
  color: var(--color-ink);
  color-scheme: light;
  font: 800 0.94rem var(--font-button);
  box-shadow: 0 16px 32px rgba(0,0,0,0.16);
}
.quote-select:focus {
  outline: 3px solid rgba(250,167,25,0.42);
  outline-offset: 3px;
}
.quote-select option {
  background: #fff;
  color: var(--color-ink);
  font-weight: 700;
}
.quote-select option:checked {
  background: var(--color-ink);
  color: #fff;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
}
.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  color: #e7eef2;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}
.hero-proof strong { color: #fff; font-size: 1.05rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: grid;
  align-items: end;
  background: var(--color-ink);
  color: #fff;
  padding: calc(var(--header-height) + 80px) 0 70px;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 20%, rgba(250,167,25,0.24), transparent 28%),
    radial-gradient(circle at 20% 78%, rgba(55,84,111,0.32), transparent 30%),
    linear-gradient(90deg, rgba(17,28,38,0.9), rgba(17,28,38,0.66)),
    linear-gradient(180deg, rgba(17,28,38,0.25), rgba(17,28,38,0.86));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-teal), var(--color-green));
}
.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero h1 {
  max-width: 100%;
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 4rem);
  text-transform: none;
  margin: 10px 0 12px;
}
.page-hero p {
  max-width: 100%;
  color: #dfe9ee;
  font-size: 1.05rem;
}
.page-protecao-para-voce .page-hero,
.page-protecao-para-empresas .page-hero,
.page-empresa .page-hero {
  min-height: 80vh;
  min-height: 80svh;
  align-items: center;
  padding: calc(var(--header-height) + 56px) 0 72px;
}
.page-protecao-para-voce .page-hero::before,
.page-protecao-para-empresas .page-hero::before,
.page-empresa .page-hero::before {
  background:
    radial-gradient(circle at 78% 26%, rgba(250,167,25,0.28), transparent 26%),
    radial-gradient(circle at 70% 76%, rgba(55,84,111,0.34), transparent 30%),
    linear-gradient(90deg, rgba(17,28,38,0.96) 0%, rgba(17,28,38,0.78) 45%, rgba(17,28,38,0.42) 100%),
    linear-gradient(180deg, rgba(17,28,38,0.15), rgba(17,28,38,0.82));
}
.page-protecao-para-voce .page-hero .container,
.page-protecao-para-empresas .page-hero .container,
.page-empresa .page-hero .container {
  display: grid;
  justify-items: start;
  align-content: center;
  text-align: left;
}
.page-protecao-para-voce .page-hero .breadcrumb,
.page-protecao-para-empresas .page-hero .breadcrumb,
.page-empresa .page-hero .breadcrumb {
  min-height: 38px;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(17,28,38,0.46);
  color: var(--color-brand-cream);
  backdrop-filter: blur(12px);
}
.page-hero-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(17,28,38,0.46);
  color: var(--color-brand-cream);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.page-protecao-para-voce .page-hero h1,
.page-protecao-para-empresas .page-hero h1,
.page-empresa .page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4.1vw, 4.05rem);
  line-height: 1.04;
  margin: 20px 0 18px;
  text-transform: uppercase;
}
.page-protecao-para-voce .page-hero p,
.page-protecao-para-empresas .page-hero p,
.page-empresa .page-hero p {
  max-width: 780px;
  margin: 0;
  color: #eef4f5;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}
.page-hero-feature {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 980px;
  margin-top: 0;
  color: #eef4f5;
}
.page-protecao-para-voce .page-hero-feature p,
.page-protecao-para-empresas .page-hero-feature p {
  max-width: 920px;
  margin: 0;
  line-height: 1.58;
}
.page-hero-feature ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}
.page-hero-feature li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #eef4f5;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}
.page-hero-feature li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(250,167,25,0.16);
}

.page-product .page-hero {
  min-height: 80vh;
  min-height: 80svh;
  align-items: center;
  padding: calc(var(--header-height) + 56px) 0 72px;
}
.page-product .page-hero::before {
  background:
    radial-gradient(circle at 76% 22%, rgba(250,167,25,0.28), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(55,84,111,0.34), transparent 30%),
    linear-gradient(90deg, rgba(17,28,38,0.96) 0%, rgba(17,28,38,0.78) 48%, rgba(17,28,38,0.42) 100%),
    linear-gradient(180deg, rgba(17,28,38,0.12), rgba(17,28,38,0.82));
}
.page-product .page-hero .container {
  display: grid;
  justify-items: start;
  align-content: center;
  text-align: left;
}
.page-product .page-hero h1 {
  max-width: 920px;
  margin: 20px 0 16px;
  color: #fff;
  font-size: clamp(2.15rem, 4.35vw, 4.35rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.page-product .page-hero p {
  max-width: 760px;
  margin: 0;
  color: #eef4f5;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
}
.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.product-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.product-hero-proof span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #eef4f5;
  font-size: 0.94rem;
  backdrop-filter: blur(12px);
}
.product-hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(250,167,25,0.16);
}

.product-detail-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250,167,25,0.08), transparent 34%),
    linear-gradient(180deg, #fff, var(--color-soft));
}
.product-detail-section::before,
.product-benefits-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,167,25,0.34), transparent);
}
.product-detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.56fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}
.product-detail-copy h2 {
  max-width: 840px;
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  line-height: 1.06;
  text-transform: uppercase;
}
.product-detail-copy p {
  max-width: 780px;
  color: var(--color-muted);
  font-size: 1.04rem;
}
.product-ideal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  max-width: 780px;
  margin-top: 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--color-line);
}
.product-ideal i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(250,167,25,0.14);
  color: var(--color-accent-strong);
}
.product-ideal p {
  margin: 0;
  color: var(--color-body);
}
.product-quote-panel {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17,28,38,0.98), rgba(55,84,111,0.9)),
    var(--color-ink);
  color: #dfe9ee;
  box-shadow: var(--shadow-md);
}
.product-quote-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(250,167,25,0.18), transparent 46%);
}
.product-quote-panel > * {
  position: relative;
  z-index: 1;
}
.product-quote-panel span {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-quote-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}
.product-quote-panel p {
  margin: 0 0 8px;
  color: #d4e0e6;
}
.product-back-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #f9f7dc;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.product-benefits-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.product-section-title {
  max-width: 780px;
  margin-left: 0;
  text-align: left;
}
.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.product-benefit-card {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(55,84,111,0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, rgba(247,250,250,0.96));
  box-shadow: 0 10px 24px rgba(17,28,38,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.product-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(250,167,25,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}
.product-benefit-card:hover,
.product-benefit-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(250,167,25,0.44);
  box-shadow: 0 20px 42px rgba(17,28,38,0.12);
}
.product-benefit-card:hover::before,
.product-benefit-card:focus-within::before {
  opacity: 1;
}
.product-benefit-icon,
.product-benefit-card h3,
.product-benefit-card p {
  position: relative;
  z-index: 1;
}
.product-benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(250,167,25,0.12);
  color: var(--color-accent-strong);
}
.product-benefit-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.1rem;
}
.product-benefit-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.page-consultoria-estrategica .page-hero {
  min-height: 80vh;
  min-height: 80svh;
  align-items: center;
  padding: calc(var(--header-height) + 56px) 0 72px;
}
.page-consultoria-estrategica .page-hero::before {
  background:
    radial-gradient(circle at 78% 24%, rgba(250,167,25,0.28), transparent 27%),
    radial-gradient(circle at 20% 80%, rgba(55,84,111,0.36), transparent 30%),
    linear-gradient(90deg, rgba(17,28,38,0.96) 0%, rgba(17,28,38,0.82) 48%, rgba(17,28,38,0.45) 100%),
    linear-gradient(180deg, rgba(17,28,38,0.14), rgba(17,28,38,0.82));
}
.page-consultoria-estrategica .page-hero .container {
  display: grid;
  justify-items: start;
  align-content: center;
  text-align: left;
}
.page-consultoria-estrategica .page-hero h1 {
  max-width: 980px;
  margin: 20px 0 16px;
  color: #fff;
  font-size: clamp(2.15rem, 4.25vw, 4.2rem);
  line-height: 1.03;
  text-transform: uppercase;
}
.page-consultoria-estrategica .page-hero p {
  max-width: 760px;
  margin: 0;
  color: #eef4f5;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
}
.strategy-hero-actions,
.strategy-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.strategy-hero-actions {
  margin-top: 28px;
}
.strategy-hero-proof {
  margin-top: 30px;
}
.strategy-hero-proof span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #eef4f5;
  font-size: 0.94rem;
  backdrop-filter: blur(12px);
}
.strategy-hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(250,167,25,0.16);
}
.strategy-diagnosis,
.strategy-solutions {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250,167,25,0.08), transparent 34%),
    linear-gradient(180deg, #fff, var(--color-soft));
}
.strategy-diagnosis::before,
.strategy-challenges::before,
.strategy-solutions::before,
.strategy-transform::before,
.strategy-final::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,167,25,0.34), transparent);
}
.strategy-diagnosis-grid,
.strategy-transform-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.56fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}
.strategy-diagnosis-copy h2,
.strategy-transform-grid h2,
.strategy-split-head h2,
.strategy-final h2 {
  max-width: 860px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.06;
  text-transform: uppercase;
}
.strategy-diagnosis-copy p,
.strategy-split-head p,
.strategy-final p {
  max-width: 780px;
  color: var(--color-muted);
  font-size: 1.04rem;
}
.strategy-insight-panel {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17,28,38,0.98), rgba(55,84,111,0.9)),
    var(--color-ink);
  color: #dfe9ee;
  box-shadow: var(--shadow-md);
}
.strategy-insight-panel::before,
.strategy-final-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(250,167,25,0.18), transparent 46%);
}
.strategy-insight-panel > *,
.strategy-final-inner > * {
  position: relative;
  z-index: 1;
}
.strategy-insight-panel span {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.strategy-insight-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}
.strategy-insight-panel p {
  margin: 0 0 8px;
  color: #d4e0e6;
}
.strategy-challenges,
.strategy-transform {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.strategy-section-title {
  max-width: 780px;
  margin-left: 0;
  text-align: left;
}
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.strategy-card {
  position: relative;
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(55,84,111,0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, rgba(247,250,250,0.96));
  box-shadow: 0 10px 24px rgba(17,28,38,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.strategy-card-compact {
  min-height: 210px;
}
.strategy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(250,167,25,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}
.strategy-card:hover,
.strategy-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(250,167,25,0.44);
  box-shadow: 0 20px 42px rgba(17,28,38,0.12);
}
.strategy-card:hover::before,
.strategy-card:focus-within::before {
  opacity: 1;
}
.strategy-icon,
.strategy-card h3,
.strategy-card p {
  position: relative;
  z-index: 1;
}
.strategy-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(250,167,25,0.12);
  color: var(--color-accent-strong);
}
.strategy-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.08rem;
}
.strategy-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.strategy-split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: 32px;
}
.strategy-split-head p {
  margin: 0;
}
.strategy-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}
.strategy-timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
}
.strategy-timeline li > span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(250,167,25,0.16);
  animation: pulse-dot 1.9s ease-in-out infinite;
}
.strategy-timeline li:nth-child(2) > span {
  animation-delay: 180ms;
}
.strategy-timeline li:nth-child(3) > span {
  animation-delay: 360ms;
}
.strategy-timeline li:nth-child(4) > span {
  animation-delay: 540ms;
}
.strategy-timeline strong {
  display: block;
  color: var(--color-ink);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.strategy-timeline p {
  margin: 0;
  color: var(--color-muted);
}
.strategy-final {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.strategy-final-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 6vw, 54px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17,28,38,0.98), rgba(55,84,111,0.84)),
    var(--color-ink);
  box-shadow: var(--shadow-md);
}
.strategy-final .eyebrow,
.strategy-final h2 {
  color: #fff;
}
.strategy-final p {
  margin: 0;
  color: #d4e0e6;
}

.page-empresa .page-hero,
.page-quem-somos .page-hero {
  min-height: 80vh;
  min-height: 80svh;
  align-items: center;
  padding: calc(var(--header-height) + 56px) 0 72px;
}
.page-empresa .page-hero::before,
.page-quem-somos .page-hero::before {
  background:
    radial-gradient(circle at 78% 24%, rgba(250,167,25,0.28), transparent 27%),
    radial-gradient(circle at 20% 80%, rgba(55,84,111,0.36), transparent 30%),
    linear-gradient(90deg, rgba(17,28,38,0.96) 0%, rgba(17,28,38,0.82) 48%, rgba(17,28,38,0.45) 100%),
    linear-gradient(180deg, rgba(17,28,38,0.14), rgba(17,28,38,0.82));
}
.page-empresa .page-hero .container,
.page-quem-somos .page-hero .container {
  display: grid;
  justify-items: start;
  align-content: center;
  text-align: left;
}
.page-empresa .page-hero h1,
.page-quem-somos .page-hero h1 {
  max-width: 980px;
  margin: 20px 0 16px;
  color: #fff;
  font-size: clamp(2.15rem, 4.25vw, 4.2rem);
  line-height: 1.03;
  text-transform: uppercase;
}
.page-empresa .page-hero p,
.page-quem-somos .page-hero p {
  max-width: 760px;
  margin: 0;
  color: #eef4f5;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
}
.about-hero-actions,
.about-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-hero-actions {
  margin-top: 28px;
}
.about-hero-proof {
  margin-top: 30px;
}
.about-hero-proof span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #eef4f5;
  font-size: 0.94rem;
  backdrop-filter: blur(12px);
}
.about-hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(250,167,25,0.16);
  animation: pulse-dot 1.9s ease-in-out infinite;
}
.about-hero-proof span:nth-child(2)::before {
  animation-delay: 180ms;
}
.about-hero-proof span:nth-child(3)::before {
  animation-delay: 360ms;
}
.about-intro-section,
.about-team-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250,167,25,0.08), transparent 34%),
    linear-gradient(180deg, #fff, var(--color-soft));
}
.about-values-section,
.about-final-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.about-intro-section::before,
.about-values-section::before,
.about-team-section::before,
.about-final-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,167,25,0.34), transparent);
}
.about-intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.56fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}
.about-intro-copy h2,
.about-section-title h2,
.about-final-inner h2,
.about-profile-copy h2 {
  max-width: 860px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.06;
  text-transform: uppercase;
}
.about-intro-copy p,
.about-final-inner p,
.about-profile-copy p,
.about-profile-list li {
  color: var(--color-muted);
  font-size: 1.04rem;
}
.about-insight-panel,
.about-final-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17,28,38,0.98), rgba(55,84,111,0.9)),
    var(--color-ink);
  color: #dfe9ee;
  box-shadow: var(--shadow-md);
}
.about-insight-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(28px, 4vw, 42px);
}
.about-insight-panel::before,
.about-final-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(250,167,25,0.18), transparent 46%);
}
.about-insight-panel > *,
.about-final-inner > * {
  position: relative;
  z-index: 1;
}
.about-insight-panel span {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-insight-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}
.about-insight-panel p {
  margin: 0 0 8px;
  color: #d4e0e6;
}
.about-section-title {
  max-width: 780px;
  margin-left: 0;
  text-align: left;
}
.about-values-section .about-section-title {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.about-team-section .about-section-title {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.about-values-section .about-section-title h2 {
  margin-right: auto;
  margin-left: auto;
}
.about-team-section .about-section-title h2 {
  margin-right: auto;
  margin-left: auto;
}
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.about-card {
  position: relative;
  min-height: 300px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(55,84,111,0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, rgba(247,250,250,0.96));
  box-shadow: 0 10px 24px rgba(17,28,38,0.05);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.about-card::before,
.about-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(250,167,25,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}
.about-card:hover,
.about-profile:hover {
  transform: translateY(-6px);
  border-color: rgba(250,167,25,0.44);
  box-shadow: 0 20px 42px rgba(17,28,38,0.12);
}
.about-card:hover::before,
.about-profile:hover::before {
  opacity: 1;
}
.about-card-icon,
.about-card h3,
.about-card p,
.about-profile-media,
.about-profile-copy {
  position: relative;
  z-index: 1;
}
.about-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(250,167,25,0.12);
  color: var(--color-accent-strong);
}
.about-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.18rem;
}
.about-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.about-profile-stack {
  display: grid;
  gap: 18px;
}
.about-profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(55,84,111,0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, rgba(247,250,250,0.96));
  box-shadow: 0 10px 24px rgba(17,28,38,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.about-profile-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-soft);
}
.about-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-profile-copy {
  display: grid;
  align-content: center;
}
.about-profile-copy h2 {
  margin-bottom: 12px;
}
.about-profile-copy p {
  max-width: 760px;
}
.about-profile-list {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-line);
  list-style: none;
}
.about-profile-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.65;
}
.about-profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(250,167,25,0.14);
}
.about-final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 6vw, 54px);
}
.about-final-inner .eyebrow,
.about-final-inner h2 {
  color: #fff;
}
.about-final-inner p {
  margin: 0;
  color: #d4e0e6;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  color: #bdcad4;
  font-size: 0.86rem;
  font-weight: 700;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--color-accent); }

.section { padding: 84px 0; }
.section-alt { background: linear-gradient(180deg, var(--color-soft), #fff); }
.section-dark {
  background: linear-gradient(135deg, var(--color-ink), var(--color-ink-2));
  color: #d7e2e8;
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-title {
  max-width: 100%;
  margin: 0 auto 44px;
  text-align: center;
}
.section-title h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.section-title p { color: var(--color-muted); font-size: 1.04rem; }
.section > .container,
.page-hero .container,
.hero-inner { animation: rise-in 640ms ease both; }

.value-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(55,84,111,0.08), transparent 36%),
    linear-gradient(180deg, #fff, #fbfcfc);
}
.value-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,167,25,0.34), transparent);
}
.value-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 30px;
}
.value-head h2 {
  max-width: 820px;
  font-size: clamp(1.65rem, 3.2vw, 2.85rem);
  line-height: 1.08;
  margin: 8px 0 0;
  text-transform: uppercase;
}
.value-panel {
  position: relative;
  padding: 0;
}
.value-panel::before {
  display: none;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stat-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, rgba(247,250,250,0.96));
  border: 1px solid rgba(55,84,111,0.13);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17,28,38,0.05);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(250,167,25,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}
.stat-card:hover,
.stat-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(17,28,38,0.12);
  border-color: rgba(250,167,25,0.44);
}
.stat-card:hover::before,
.stat-card:focus-within::before {
  opacity: 1;
}
.stat-card img {
  position: relative;
  height: 58px;
  margin: 0 auto 18px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(250,167,25,0.1);
  filter: drop-shadow(0 10px 14px rgba(17,28,38,0.08));
}
.stat-number {
  position: relative;
  color: var(--color-brand-gold);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  font-weight: 850;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card h3 {
  position: relative;
  color: var(--color-ink);
  font-size: 1.1rem;
  margin-bottom: 9px;
}
.stat-card p {
  position: relative;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.value-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.partners-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(249,167,25,0.08), transparent 34%),
    linear-gradient(180deg, #fff, var(--color-soft));
}
.partners-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(55,84,111,0.2), transparent);
}
.partners-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 30px;
}
.partners-head h3 {
  max-width: 780px;
  color: var(--color-ink);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.08;
  margin: 8px 0 0;
  text-transform: uppercase;
}
.partners-panel {
  position: relative;
  padding: 0;
}
.partners-panel::before {
  display: none;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  --logo-gap: 14px;
  --logo-card-width: clamp(150px, 11vw, 188px);
  display: flex;
  width: max-content;
  animation: logo-marquee 34s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track {
  animation-play-state: paused;
}
.logo-set {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--logo-card-width);
  flex: 0 0 auto;
  column-gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}
.logo-card {
  width: var(--logo-card-width);
  min-width: 0;
  height: 104px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(55,84,111,0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,250,0.94));
  box-shadow: 0 10px 24px rgba(17,28,38,0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}
.logo-card img {
  width: auto;
  max-width: calc(100% - 32px);
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: saturate(0.96);
  transition: filter 200ms ease, transform 200ms ease;
}
.logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250,167,25,0.46);
  background: #fff;
  box-shadow: 0 18px 34px rgba(17,28,38,0.11);
}
.logo-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.03);
}

.brand-statement {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0;
  background: var(--color-ink);
  color: var(--color-brand-cream);
}
.brand-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250,167,25,0.08), transparent 38%, rgba(55,84,111,0.2) 100%);
}
.brand-statement::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(249,247,220,0.16);
}
.brand-statement-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}
.brand-statement-copy {
  min-width: 0;
}
.brand-statement-copy h2 {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  color: #fff;
  font-size: clamp(1.7rem, 2.55vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}
.brand-statement-copy h2 span {
  display: block;
  white-space: nowrap;
}
.brand-statement-copy h2 span:nth-child(2) {
  margin-left: clamp(42px, 6vw, 120px);
}
.brand-statement-system {
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.8vw, 30px);
  text-align: center;
}
.brand-statement-system img {
  width: clamp(260px, 28vw, 460px);
  filter:
    drop-shadow(0 16px 24px rgba(0,0,0,0.24))
    drop-shadow(0 0 16px rgba(250,167,25,0.16));
}
.brand-letters {
  display: grid;
  width: clamp(240px, 28vw, 360px);
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 42px);
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}
.brand-statement-system p {
  margin: -10px 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 22px;
  list-style: none;
}
.icon-list li {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.icon-list li::before {
  content: "\2713";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(17,28,38,0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(180deg, var(--color-accent), var(--color-teal));
  opacity: 0;
  transition: opacity 220ms ease;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(55,84,111,0.4);
  box-shadow: var(--shadow-md);
}
.product-card:hover::before,
.product-card:focus-within::before { opacity: 1; }
.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-soft-2);
  color: var(--color-teal);
  font-weight: 900;
}
.product-card h3 { font-size: 1.16rem; margin-bottom: 2px; }
.product-card p { flex: 1; color: var(--color-muted); font-size: 0.95rem; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

.imagebox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.imagebox { text-align: left; }
.imagebox img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.imagebox h3 { margin-bottom: 4px; }
.imagebox .role {
  display: block;
  margin-bottom: 12px;
  color: var(--color-accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prose { max-width: 100%; margin: 0 auto; }
.prose h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--color-body); }
.prose a:not(.btn) {
  color: var(--color-teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px 20px;
}
.prose li { padding-left: 2px; }

.prose,
.product-card,
.product-benefit-card,
.strategy-card,
.about-card,
.contact-page,
.sim-tool-card,
.sim-result-panel,
.sim-note-grid > div {
  overflow-wrap: anywhere;
}

.counter-row { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; text-align: center; }
.counter-row .counter { min-width: 160px; }
.counter .num { color: var(--color-accent); font-size: 2.4rem; font-weight: 850; }
.counter .label { color: var(--color-muted); font-size: 0.92rem; }

.form-grid { display: grid; gap: 14px; }
.form-grid label {
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 800;
}
.form-grid input,
.form-grid textarea,
.sim-card input[type="text"],
.sim-card input[type="number"] {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.form-grid input:focus,
.form-grid textarea:focus,
.sim-card input:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(55,84,111,0.12);
  outline: none;
}
.form-grid textarea { min-height: 132px; resize: vertical; }
.contact-section {
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
}
.contact-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  align-items: stretch;
  gap: 0;
  min-height: 720px;
  overflow: hidden;
}
.contact-info {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(28px, 5.4vh, 56px);
  padding: 96px 38px 78px 0;
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -10vw;
  z-index: 0;
  background: #fff;
}
.contact-info > * {
  position: relative;
  z-index: 1;
}
.contact-info-block {
  display: grid;
  gap: 14px;
  max-width: 380px;
  animation: rise-in 640ms ease both;
}
.contact-info-block:nth-child(2) { animation-delay: 90ms; }
.contact-info-block h2 {
  color: var(--color-ink);
  font-size: clamp(1.55rem, 2.9vw, 2.75rem);
  line-height: 1.08;
}
.contact-info-block h3 {
  color: var(--color-ink);
  font-size: 1.32rem;
  line-height: 1.25;
}
.contact-info-block p,
.contact-info-block address a,
.contact-info-block address span {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.contact-info-block address {
  display: grid;
  gap: 10px;
  font-style: normal;
}
.contact-info-block address a:hover {
  color: var(--color-teal);
}
.contact-form-panel {
  display: grid;
  align-items: center;
  margin-right: -10vw;
  padding: 96px 10vw 78px clamp(56px, 7vw, 120px);
  border-left: 1px solid var(--color-line);
  background: #fff;
}
.contact-form {
  display: grid;
  width: 100%;
  max-width: 560px;
  gap: 28px;
  animation: rise-in 700ms 140ms ease both;
}
.contact-form h3 {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 1.4rem;
  font-weight: 650;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-size: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(55,84,111,0.28);
  border-radius: 0;
  background: transparent;
  color: var(--color-ink);
  font: inherit;
  outline: 0;
  padding: 0 0 12px;
  transition: border-color 180ms ease, color 180ms ease;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(93,109,119,0.54);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--color-accent);
  box-shadow: none;
}
.contact-form .btn {
  min-height: 58px;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-ink), var(--color-ink-2));
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-form .btn:hover {
  background: var(--color-accent);
  color: var(--color-ink);
  transform: translateY(-2px);
}
.contact-form .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.contact-form-status {
  margin: 12px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.contact-form-status.is-success { color: #2e7d32; }
.contact-form-status.is-error { color: #c62828; }
.contact-link {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-body);
}
.contact-link:hover strong { color: var(--color-teal); }
.contact-link span {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-link strong {
  color: var(--color-ink);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.45;
  transition: color 180ms ease;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-ink);
  font-weight: 850;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}
.contact-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(55,84,111,0.42);
  color: var(--color-teal);
}
.contact-info-card {
  padding: 28px;
  background: linear-gradient(135deg, var(--color-ink), var(--color-ink-2));
  color: #dbe6eb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 { color: #fff; font-size: 1rem; text-transform: uppercase; }
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.cta-banner {
  padding: clamp(30px, 6vw, 54px);
  margin: 0 auto;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(17,28,38,0.98), rgba(55,84,111,0.84)),
    linear-gradient(90deg, var(--color-accent), var(--color-teal));
  box-shadow: var(--shadow-md);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.cta-banner p { max-width: 620px; margin: 0 auto 24px; color: #e6f0f3; }
.cta-banner p { max-width: 100%; }

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--color-ink) 0%, #1f2933 54%, #0d171f 100%);
  color: #c4d0d8;
  padding: 18px 0 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250,167,25,0.12), transparent 28%, rgba(55,84,111,0.18) 100%);
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(180px, 0.75fr) minmax(230px, 0.9fr) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: 54px 0 44px;
}
.footer-brand {
  display: grid;
  align-content: start;
  gap: 20px;
}
.footer-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-logo img {
  width: auto;
  max-width: 170px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.22));
}
.footer-brand p,
.footer-newsletter p,
.footer-contact span {
  color: #b8c7cf;
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-grid h3 {
  color: var(--color-accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-nav ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav a,
.footer-contact a {
  color: #eef4f5;
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-accent);
}
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
  font-style: normal;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.05rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.footer-social i {
  line-height: 1;
}
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(250,167,25,0.48);
  background: rgba(250,167,25,0.12);
  color: #fff;
}
.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.footer-newsletter input {
  flex: 1 1 190px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.footer-newsletter input::placeholder { color: #b6c3cc; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.11);
  padding: 20px 0;
  color: #94a5b1;
  font-size: 0.84rem;
}
.footer-bottom a {
  color: #dce7ec;
  font-weight: 800;
}
.footer-bottom a:hover { color: var(--color-accent); }

.sim-card {
  padding: clamp(18px, 4vw, 32px);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.sim-card table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.sim-card th,
.sim-card td {
  padding: 12px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  font-size: 0.94rem;
}
.sim-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 26px;
  align-items: start;
  margin-top: 24px;
}
.sim-panel {
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-soft);
  text-align: center;
}
.sim-panel .result {
  margin: 10px 0;
  color: var(--color-teal);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 850;
}
.sim-tools { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 14px; }
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--color-soft-2);
  color: var(--color-teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.page-simulador-de-capital-seguro-de-vida .page-hero {
  min-height: 80vh;
}

.page-simulador-de-capital-seguro-de-vida .page-hero .container {
  display: grid;
  justify-items: center;
  max-width: min(var(--content-width), 1180px);
  text-align: center;
}

.page-simulador-de-capital-seguro-de-vida .page-hero h1 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.page-simulador-de-capital-seguro-de-vida .page-hero p {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.page-simulador-de-capital-seguro-de-vida .about-hero-proof {
  justify-content: center;
}

.sim-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(251,163,24,0.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8faf8 100%);
}

.sim-section-title {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sim-section-title h2 {
  margin-right: auto;
  margin-left: auto;
}

.sim-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.sim-tool-card,
.sim-result-panel,
.sim-note-grid > div {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
}

.sim-tool-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3.5vw, 34px);
}

.sim-tool-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-teal));
}

.sim-tool-header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.sim-tool-header h3,
.sim-result-panel h3,
.sim-note-grid h3 {
  margin: 0;
  color: var(--color-ink);
}

.sim-result-panel h3 {
  margin-bottom: 18px;
  color: #fff;
}

.sim-actions,
.sim-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sim-actions .btn-outline {
  border-color: var(--color-line);
  color: var(--color-ink);
}

.sim-actions .btn-outline:hover {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #fff;
}

.sim-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.sim-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.sim-table th {
  padding: 16px;
  background: #f4f7f5;
  color: var(--color-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.sim-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--color-line);
}

.sim-table input,
.sim-result-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #f8faf8;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 650;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sim-table input {
  padding: 12px 14px;
}

.sim-result-panel input {
  margin: 8px 0 18px;
  padding: 13px 15px;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.sim-table input:focus,
.sim-result-panel input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(251,163,24,0.16);
  outline: none;
}

.sim-result-panel input::placeholder {
  color: rgba(255,255,255,0.62);
}

.sim-remove {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: #fff;
  color: var(--color-muted);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sim-remove:hover,
.sim-remove:focus-visible {
  border-color: rgba(251,163,24,0.65);
  color: var(--color-accent-strong);
  transform: translateY(-1px);
  outline: none;
}

.sim-result-panel {
  position: sticky;
  top: 110px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(155deg, rgba(17,28,38,0.96), rgba(26,55,73,0.98)),
    var(--color-ink);
  color: #fff;
}

.sim-result-panel .eyebrow {
  color: var(--color-accent);
}

.sim-result-panel label,
.sim-result-label {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sim-total-line {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
}

.sim-total-line strong {
  color: #fff;
  font-size: 1.05rem;
  text-align: right;
  overflow-wrap: anywhere;
}

.sim-result-panel .result {
  margin: 8px 0 10px;
  color: var(--color-accent);
  font-size: clamp(2.05rem, 4.2vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sim-result-panel .subtle {
  min-height: 46px;
  color: rgba(255,255,255,0.68);
}

.sim-panel-actions {
  margin-top: 22px;
}

.sim-panel-actions .btn {
  flex: 1 1 180px;
}

.sim-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.sim-note-grid > div {
  padding: 24px;
}

.sim-note-grid i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(251,163,24,0.12);
  color: var(--color-accent-strong);
  font-size: 1.15rem;
}

.sim-note-grid p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float i {
  font-size: 1.45rem;
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.cookie-banner p { max-width: 640px; margin: 0; color: var(--color-muted); font-size: 0.9rem; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner.hidden { display: none; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(250,167,25,0.16);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 12px rgba(250,167,25,0.04);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .product-card,
  .stat-card,
  .product-benefit-card,
  .product-quote-panel,
  .strategy-card,
  .strategy-insight-panel,
  .about-card,
  .about-profile,
  .about-insight-panel,
  .imagebox,
  .cta-banner { animation: rise-in 640ms ease both; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .hero-video { display: none; }
  .logo-track {
    animation: none;
    transform: none;
  }
  .strategy-timeline li > span {
    animation: none;
  }
  .about-hero-proof span::before {
    animation: none;
  }
  .logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 1200px) {
  .brand-statement-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-statement-copy h2 {
    font-size: 2.15rem;
  }
  .brand-statement-copy h2 span:nth-child(2) {
    margin-left: 0;
  }
  .brand-statement-system img {
    width: clamp(250px, 44vw, 400px);
  }
  .value-head,
  .partners-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }
}

@media (max-width: 980px) {
  :root { --header-height: 74px; }
  .header-top { grid-template-columns: auto 1fr auto; }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 18px 20px 34px;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid var(--color-line);
    transform: translateX(-105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, visibility 220ms ease;
    overflow-y: auto;
  }
  .page-home .main-nav {
    background: rgba(17,28,38,0.98);
    border-top-color: rgba(255,255,255,0.12);
  }
  .page-home .main-nav a {
    color: #fff;
  }
  .page-home .has-dropdown .dropdown {
    background: rgba(255,255,255,0.08);
  }
  .page-home .nav-toggle {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
  }
  .page-home .nav-toggle span {
    background: #fff;
  }
  .main-nav {
    background: rgba(17,28,38,0.98);
    border-top-color: rgba(255,255,255,0.12);
  }
  .main-nav a,
  .site-header .main-nav .dropdown li a {
    color: #fff;
  }
  .has-dropdown .dropdown {
    background: rgba(255,255,255,0.08);
  }
  .nav-toggle {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
  }
  .nav-toggle span {
    background: #fff;
  }
  .main-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .main-nav ul { display: grid; align-items: stretch; gap: 4px; }
  .main-nav a {
    width: 100%;
    min-height: 46px;
    padding: 12px 10px;
  }
  .main-nav > ul > li > a::after { display: none; }
  .has-dropdown .dropdown {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    min-width: 0;
    display: none;
    margin: 2px 0 8px 12px;
    box-shadow: none;
    border: 0;
    background: var(--color-soft);
  }
  .has-dropdown.open .dropdown { display: grid; }
  .header-social { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .stat-grid,
  .product-detail-grid,
  .product-benefit-grid,
  .strategy-diagnosis-grid,
  .strategy-transform-grid,
  .strategy-split-head,
  .about-intro-grid,
  .about-card-grid,
  .about-profile,
  .sim-layout,
  .sim-grid { grid-template-columns: 1fr; }
  .strategy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-statement-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-statement-copy {
    max-width: 100%;
  }
  .brand-statement-copy h2 {
    font-size: 1.82rem;
  }
  .brand-statement-copy h2 span:nth-child(2) {
    margin-left: 0;
  }
  .brand-statement-system img {
    width: min(70%, 360px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-page {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-info {
    padding: 74px 0 44px;
  }
  .contact-info::before {
    inset: 0 -10vw 0 -10vw;
  }
  .contact-form-panel {
    margin: 0 -10vw;
    padding: 54px 10vw 70px;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }
  .contact-form {
    max-width: 100%;
  }
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    place-items: center;
  }
  .hero-inner {
    padding: 118px 0 78px;
  }
  .hero-inner h1 { font-size: clamp(1.85rem, 8.4vw, 3rem); }
  .product-detail-grid {
    gap: 34px;
  }
  .product-quote-panel {
    max-width: 560px;
  }
  .strategy-insight-panel {
    max-width: 560px;
  }
  .about-insight-panel {
    max-width: 560px;
  }
  .strategy-final-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .about-final-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .strategy-final-inner .btn,
  .about-final-inner .btn {
    justify-self: start;
  }
  .about-profile-media {
    min-height: 360px;
  }
  .sim-result-panel {
    position: relative;
    top: auto;
  }
  .sim-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body { font-size: 0.96rem; }
  .container,
  .hero-inner,
  .header-top { width: calc(100% - 28px); }
  h1,
  h2,
  h3,
  p,
  .btn,
  .breadcrumb,
  .hero-badge,
  .page-hero-badge {
    overflow-wrap: anywhere;
  }
  .logo-group img { height: 36px; }
  .section { padding: 58px 0; }
  .contact-section { padding: 0; }
  .page-hero { padding: 54px 0 44px; }
  .page-hero h1 {
    font-size: clamp(1.72rem, 8.4vw, 2.7rem);
  }
  .page-hero p {
    font-size: 0.98rem;
  }
  .page-hero-feature {
    gap: 10px;
    margin-top: 0;
  }
  .page-protecao-para-voce .page-hero-feature p,
  .page-protecao-para-empresas .page-hero-feature p {
    font-size: 0.96rem;
  }
  .page-hero-feature li {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.9rem;
  }
  .page-product .page-hero {
    min-height: 80vh;
    min-height: 80svh;
    padding: calc(var(--header-height) + 42px) 0 52px;
  }
  .page-consultoria-estrategica .page-hero {
    min-height: 80vh;
    min-height: 80svh;
    padding: calc(var(--header-height) + 42px) 0 52px;
  }
  .page-empresa .page-hero,
  .page-quem-somos .page-hero {
    min-height: 80vh;
    min-height: 80svh;
    padding: calc(var(--header-height) + 42px) 0 52px;
  }
  .page-product .page-hero h1 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }
  .page-consultoria-estrategica .page-hero h1 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }
  .page-empresa .page-hero h1,
  .page-quem-somos .page-hero h1 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }
  .product-hero-actions,
  .product-hero-actions .btn,
  .product-hero-proof,
  .strategy-hero-actions,
  .strategy-hero-actions .btn,
  .strategy-hero-proof,
  .about-hero-actions,
  .about-hero-actions .btn,
  .about-hero-proof {
    width: 100%;
  }
  .product-hero-proof span,
  .strategy-hero-proof span,
  .about-hero-proof span {
    width: 100%;
  }
  .card-actions {
    flex-direction: column;
  }
  .card-actions .btn {
    width: 100%;
  }
  .product-back-link {
    max-width: 100%;
  }
  .breadcrumb,
  .breadcrumb a,
  .contact-info-block address a {
    min-height: 44px;
  }
  .breadcrumb a,
  .contact-info-block address a {
    display: inline-flex;
    align-items: center;
  }
  .prose a:not(.btn) {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    vertical-align: middle;
  }
  .product-detail-copy h2,
  .product-section-title h2,
  .strategy-diagnosis-copy h2,
  .strategy-transform-grid h2,
  .strategy-split-head h2,
  .strategy-final h2,
  .strategy-section-title h2,
  .about-intro-copy h2,
  .about-section-title h2,
  .about-final-inner h2,
  .about-profile-copy h2 {
    font-size: 1.46rem;
  }
  .product-detail-copy p,
  .strategy-diagnosis-copy p,
  .strategy-split-head p,
  .about-intro-copy p,
  .about-profile-copy p,
  .about-profile-list li {
    font-size: 0.96rem;
  }
  .product-ideal {
    grid-template-columns: 1fr;
  }
  .product-quote-panel,
  .product-benefit-card,
  .strategy-insight-panel,
  .strategy-card,
  .strategy-final-inner,
  .about-insight-panel,
  .about-card,
  .about-profile,
  .about-final-inner {
    padding: 22px;
  }
  .product-benefit-card,
  .strategy-card,
  .about-card {
    min-height: 0;
  }
  .strategy-grid {
    grid-template-columns: 1fr;
  }
  .about-profile-media {
    min-height: 300px;
  }
  .strategy-final-inner .btn,
  .about-final-inner .btn {
    width: 100%;
  }
  .value-head,
  .partners-head {
    margin-bottom: 22px;
  }
  .value-head h2,
  .partners-head h3 {
    font-size: 1.34rem;
  }
  .stat-card {
    min-height: 0;
    padding: 24px 20px;
  }
  .value-cta .btn {
    width: 100%;
  }
  .logo-marquee {
    margin: 0 -14px;
    padding: 4px 0 12px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    max-width: calc(100% + 28px);
  }
  .logo-track {
    --logo-gap: 10px;
    --logo-card-width: 132px;
    animation-duration: 26s;
  }
  .logo-set {
    padding-right: var(--logo-gap);
  }
  .logo-card {
    height: 84px;
  }
  .logo-card img {
    max-width: calc(100% - 24px);
    max-height: 58px;
  }
  .hero-actions,
  .hero-proof,
  .footer-newsletter form,
  .cookie-actions { width: 100%; }
  .footer-grid {
    gap: 30px;
    padding: 36px 0;
  }
  .footer-logo img {
    height: 36px;
  }
  .footer-newsletter .btn {
    width: 100%;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .quote-select,
  .hero-actions .btn,
  .cookie-actions .btn { width: 100%; }
  .sim-tool-header,
  .sim-actions,
  .sim-panel-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .sim-actions .btn,
  .sim-panel-actions .btn {
    width: 100%;
  }
  .sim-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .sim-table {
    display: block;
    min-width: 0;
  }
  .sim-table thead {
    display: none;
  }
  .sim-table tbody,
  .sim-table tr,
  .sim-table td {
    display: block;
    width: 100%;
  }
  .sim-table tr {
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 18px rgba(17,28,38,0.05);
  }
  .sim-table td {
    padding: 6px 0;
    border-top: 0;
  }
  .sim-table td::before {
    display: block;
    margin-bottom: 6px;
    color: var(--color-ink);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .sim-table td:nth-child(1)::before { content: "Despesa"; }
  .sim-table td:nth-child(2)::before { content: "Valor mensal"; }
  .sim-table td:nth-child(3) {
    display: flex;
    justify-content: flex-end;
    padding-top: 8px;
  }
  .sim-table input {
    min-height: 46px;
  }
  .sim-tool-card,
  .sim-result-panel,
  .sim-note-grid > div {
    padding: 22px;
  }
  .sim-result-panel .result {
    font-size: clamp(1.9rem, 10vw, 2.65rem);
  }
  .sim-total-line {
    align-items: flex-start;
    flex-direction: column;
  }
  .sim-total-line strong {
    text-align: left;
  }
  .brand-statement {
    padding: 56px 0;
  }
  .brand-statement-copy h2 {
    font-size: 1.08rem;
    gap: 14px;
  }
  .brand-statement-system {
    gap: 18px;
  }
  .brand-statement-system img {
    width: min(72%, 260px);
  }
  .brand-letters {
    width: min(84%, 270px);
    gap: 16px;
    font-size: clamp(1.9rem, 11vw, 2.85rem);
  }
  .brand-statement-system p {
    margin-top: -8px;
    font-size: clamp(0.96rem, 4.8vw, 1.32rem);
  }
  .hero-proof span { width: 100%; justify-content: space-between; }
  .product-card,
  .stat-card,
  .contact-info-card,
  .sim-card,
  .cta-banner { padding: 22px; }
  .contact-info {
    padding: 54px 0 38px;
  }
  .contact-info::before {
    inset: 0;
  }
  .contact-form-panel {
    margin: 0;
    padding: 42px 0 58px;
  }
  .contact-form {
    gap: 24px;
  }
  .contact-form .btn {
    width: 100%;
  }
  .sim-card table { min-width: 620px; }
  .sim-card { overflow-x: auto; }
  .section-dark .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
}

@media (max-width: 380px) {
  .brand-statement-copy h2 {
    font-size: 0.94rem;
  }
}
