:root {
  --navy: #2d3f58;
  --navy-strong: #1d2b3f;
  --cyan: #7ec9dd;
  --yellow: #f0dc37;
  --blue: #7fa2dd;
  --lavender: #c3bdd8;
  --paper: #f7f9fc;
  --white: #ffffff;
  --ink: #142033;
  --muted: #657287;
  --line: #dfe6ef;
  --success: #126b43;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(20, 32, 51, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 239, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background: var(--navy);
}

.brand picture {
  display: block;
  width: 48px;
  height: 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.main-nav a {
  color: var(--navy-strong);
}

.nav-cta,
.primary-link,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-strong);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(240, 220, 55, 0.24);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 440px);
  gap: clamp(24px, 4vw, 56px);
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 1vw, 86px) clamp(18px, 5vw, 72px) 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(126, 201, 221, 0.36), transparent 28%),
    radial-gradient(circle at 68% 18%, rgba(240, 220, 55, 0.2), transparent 25%),
    linear-gradient(132deg, var(--navy-strong) 0%, var(--navy) 58%, #405572 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--yellow) 0%,
    #b8d85a 30%,
    var(--cyan) 62%,
    var(--blue) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 7px 16px rgba(20, 32, 51, 0.14);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  gap: 10px;
  max-width: 680px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.simulation-panel {
  position: relative;
  z-index: 3;
  align-self: self-start;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.simulation-panel h2 {
  max-width: 330px;
  margin: 0 auto 22px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.12;
  text-align: center;
}

.lead-form {
  display: grid;
  gap: 4px;
}

.field,
.range-field {
  display: grid;
  gap: 1px;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.9rem;
}

.field input,
.field select {
  width: 100%;
  min-height: 35px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.field input:focus,
.field select:focus,
.range-field input:focus-visible,
.consent input:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(126, 201, 221, 0.22);
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.split-fields-mail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.split-fields-tipo {
  display: flex;
  grid-template-columns: 0.5fr;
  gap: 12px;
}

.range-field {
  text-align: center;
}

.simulation-choice {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  padding: 0;
  border: 0;
  text-align: center;
}

.simulation-choice legend {
  padding: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.choice-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  border-radius: 8px;
  background: #f1f3f6;
}

.choice-toggle label {
  display: block;
}

.choice-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 7px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.choice-toggle input:checked + span {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(20, 32, 51, 0.18);
}

.choice-toggle input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(126, 201, 221, 0.28);
}

.range-field strong {
  color: var(--ink);
  font-size: 1.85rem;
}

.range-field input {
  width: 100%;
  accent-color: var(--cyan);
}

.range-limits {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.consent input {
  margin-top: 2px;
  accent-color: var(--navy);
}

.privacy-inline-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;  
  text-underline-offset: 3px;
}

.privacy-inline-link:hover {
  color: var(--navy-strong);
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-field {
  display: flex;
  justify-content: center;
  min-height: 65px;
  margin: 4px 0;
}

.turnstile-field[hidden] {
  display: none;
}

.submit-button {
  width: 100%;
  min-height: 50px;
  font-size: 0.96rem;
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.hero-visual {
  position: absolute;
  left: 46%;
  bottom: 2%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.96;
}

.orbit {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 28px solid transparent;
  opacity: 0.42;
}

.orbit-one {
  border-top-color: var(--yellow);
  border-right-color: var(--cyan);
  transform: rotate(-28deg);
}

.orbit-two {
  inset: 22%;
  border-width: 18px;
  border-bottom-color: var(--blue);
  border-left-color: var(--lavender);
  transform: rotate(18deg);
}

.prime-card,
.asset-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.prime-card {
  left: 22%;
  top: 32%;
  display: grid;
  gap: 8px;
  width: 210px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.prime-card img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
}

.prime-card span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.prime-card strong {
  font-size: 1.8rem;
}

.asset-chip {
  padding: 11px 15px;
  font-weight: 900;
  opacity: 0.42;
}

.chip-M {
  left: 20%;
  top: 18%;
}

.chip-home {
  left: 20%;
  top: 10%;
}

.chip-veiculo {
  left: 1%;  
  bottom: 55%;
}

.chip-car {
  left: 25%;
  bottom: 34%;
}

.chip-service {
  right: 22%;
  bottom: 22%;
}

.products-section,
.steps-section,
.social-proof-section,
.social-band,
.security-section,
.final-cta {
  padding: clamp(54px, 8vw, 54px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.social-proof-section h2,
.social-band h2,
.security-section h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-strong);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.product-card {
  display: grid;
  gap: 14px;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(240, 220, 55, 0.62);
  box-shadow: 0 20px 46px rgba(20, 32, 51, 0.12);
  transform: translateY(-3px);
}

.product-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 12px;
  align-items: center;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 128px;
  height: 128px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.product-icon picture,
.product-icon img {
  width: 100%;
  height: 100%;
}

.product-icon picture {
  display: block;
}

.product-icon img {
  object-fit: contain;
}

.product-card h3,
.timeline h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.28rem;
}

.product-card p,
.timeline p,
.social-proof-section p,
.security-section p,
.security-list span,
.proof-list span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-card a {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.product-card:hover a,
.product-card:focus-within a {
  padding: 0 18px;
  background: var(--yellow);
  color: var(--navy-strong);
  box-shadow: 0 12px 26px rgba(240, 220, 55, 0.26);
}

.steps-section {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline article {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 26px;
  background: var(--white);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy-strong);
  font-weight: 900;
}

.social-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.instagram-panel-cta {
  grid-column: 2;
  justify-self: center;
  margin-top: -48px;
}

.social-proof-content {
  display: grid;
  gap: 20px;
  align-content: start;
}

.social-proof-content h2 {
  max-width: 780px;
}

.social-proof-content p {
  max-width: 680px;
  font-size: 1.05rem;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 4px 0 6px;
}

.proof-list div {
  display: grid;
  gap: 4px;
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
}

.proof-list strong {
  color: var(--navy);
}

.social-band {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(126, 201, 221, 0.22), transparent 28%),
    linear-gradient(132deg, var(--navy-strong) 0%, var(--navy) 58%, #405572 100%);
  border: 0;
}

.social-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--lavender));
}

.social-band h2 {
  max-width: 680px;
  color: var(--white);
}

.social-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.social-band-actions .primary-link {
  flex: 0 0 auto;
}

.social-links-group {
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-left: auto;
}

.social-links-group > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: #f7f9fc;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.12);
}

.social-link svg {
  width: 23px;
  height: 23px;
}

.instagram-link svg {
  fill: none;
  stroke: url(#instagram-gradient);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.facebook-link svg {
  fill: #1877f2;
}

.google-link .google-blue {
  fill: #4285f4;
}

.google-link .google-green {
  fill: #34a853;
}

.google-link .google-yellow {
  fill: #fbbc05;
}

.google-link .google-red {
  fill: #ea4335;
}

.youtube-link svg {
  fill: #ff0000;
}

.instagram-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f7fb;
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.1);
}

.instagram-panel iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  background: var(--white);
}

.instagram-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.96), rgba(237, 244, 248, 0.96));
}

.instagram-fallback strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.instagram-fallback span {
  max-width: 340px;
  color: var(--muted);
  line-height: 1.5;
}

.instagram-fallback a {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-strong);
  font-weight: 900;
}

.instagram-panel iframe + .instagram-fallback {
  z-index: 0;
}

.security-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(180deg, #f7f9fc, #edf4f8);
}

.faq-section {
  padding: clamp(58px, 8vw, 82px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 20%, rgba(126, 201, 221, 0.22), transparent 28%),
    linear-gradient(132deg, var(--navy-strong) 0%, var(--navy) 58%, #405572 100%);
}

.faq-list {
  display: grid;
  gap: 15px;
  max-width: 960px;
  margin: 42px auto 0;
}

.faq-list details {
  --faq-accent: var(--yellow);
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(20, 32, 51, 0.12);
}

.faq-list details:nth-child(4n + 1) {
  --faq-accent: var(--yellow);
}

.faq-list details:nth-child(4n + 2) {
  --faq-accent: var(--cyan);
}

.faq-list details:nth-child(4n + 3) {
  --faq-accent: var(--blue);
}

.faq-list details:nth-child(4n + 4) {
  --faq-accent: var(--lavender);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 18px 64px 18px 28px;
  color: #2c2e4c;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.18rem);
  cursor: pointer;
  list-style: none;
  border-left: 8px solid var(--faq-accent);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--faq-accent);
  border-bottom: 2px solid var(--faq-accent);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list summary:focus-visible {
  outline: 4px solid rgba(255, 255, 255, 0.42);
  outline-offset: 4px;
}

.faq-list p {
  margin: 0;
  padding: 0 28px 24px 36px;
  color: #566078;
  line-height: 1.65;
  border-left: 8px solid var(--faq-accent);
}

.faq-section .section-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.faq-section .section-heading h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.faq-section .section-heading p {
  margin: 10px 0 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.45;
}

.security-section p {
  max-width: 700px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(20, 32, 51, 0.06);
}

.security-list strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.final-cta {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  background: var(--navy-strong);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--yellow) 0%,
    #b8d85a 30%,
    var(--cyan) 62%,
    var(--blue) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 7px 16px rgba(20, 32, 51, 0.14);
}

.final-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--yellow) 0%,
    #b8d85a 30%,
    var(--cyan) 62%,
    var(--blue) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 -7px 16px rgba(20, 32, 51, 0.12);
}

.final-cta h2 {
  max-width: 840px;
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--white);
  color: var(--navy);
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.site-footer a {
  font-weight: 900;
}

.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.footer-link:hover,
.site-footer a:hover {
  color: var(--navy-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-modal {
  width: min(920px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
}

.privacy-modal::backdrop {
  background: rgba(20, 32, 51, 0.62);
  backdrop-filter: blur(4px);
}

.privacy-modal-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(20, 32, 51, 0.28);
}

.privacy-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.privacy-modal-header h2 {
  margin: 4px 0 0;
  color: var(--navy-strong);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1;
}

.privacy-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-close:hover {
  background: var(--yellow);
  color: var(--navy-strong);
}

.privacy-modal-content {
  display: grid;
  gap: 14px;
  max-height: min(560px, calc(100vh - 190px));
  overflow-y: auto;
  padding: 24px clamp(20px, 4vw, 34px) 32px;
}

.privacy-modal-content h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.privacy-modal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-version {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(223, 230, 239, 0.94);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(20, 32, 51, 0.2);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent h2 {
  margin: 0;
  color: var(--navy-strong);
  font-size: 1.12rem;
}

.cookie-consent p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-consent-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cookie-button.primary {
  border: 1px solid #0b66d8;
  background: #0b66d8;
  color: var(--white);
}

.cookie-button.ghost {
  border: 1px solid #0b66d8;
  background: var(--white);
  color: #0b66d8;
}

.cookie-button:hover,
.cookie-button:focus-visible,
.cookie-float:hover,
.cookie-float:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.16);
}

.cookie-modal {
  width: min(840px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
}

.cookie-modal::backdrop {
  background: rgba(20, 32, 51, 0.5);
  backdrop-filter: blur(3px);
}

.cookie-modal-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(20, 32, 51, 0.28);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.cookie-modal-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.cookie-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-modal-content {
  display: grid;
  gap: 12px;
  max-height: min(470px, calc(100vh - 210px));
  overflow-y: auto;
  padding: 22px 24px;
}

.cookie-modal-content > p {
  margin: 0;
  color: #323a48;
  line-height: 1.65;
}

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cookie-category strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.cookie-category p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-category > span {
  color: #08751e;
  font-size: 0.9rem;
  font-weight: 900;
}

.cookie-category input {
  width: 44px;
  height: 24px;
  accent-color: #0b66d8;
  cursor: pointer;
}

.cookie-modal-actions {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
}

.cookie-modal-actions .cookie-button {
  flex: 1 1 180px;
}

.cookie-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #075fb4;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(20, 32, 51, 0.26), 0 0 0 1px rgba(20, 32, 51, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cookie-float svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.whatsapp-callout {
  --callout-size: clamp(132px, 15vw, 190px);
  --callout-right: 44px;
  --callout-bottom: 54px;
  position: fixed;
  right: var(--callout-right);
  bottom: var(--callout-bottom);
  z-index: 90;
  width: var(--callout-size);
  height: auto;
  pointer-events: none;
  transform-origin: 78% 84%;
  animation: whatsapp-callout-intro 7s ease-in-out forwards;
}

@keyframes whatsapp-callout-intro {
  0% {
    opacity: 1;
    transform: translate(
      calc(-50vw + var(--callout-right) + (var(--callout-size) / 2)),
      calc(-50vh + var(--callout-bottom) + (var(--callout-size) / 2))
    ) scale(2.7);
  }

  46% {
    opacity: 1;
    transform: scale(1);
  }

  56%,
  72%,
  88% {
    opacity: 0.34;
    transform: scale(0.98);
  }

  64%,
  80%,
  96% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92);
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: linear-gradient(180deg, #35df63 0%, #16bd4a 100%);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(20, 32, 51, 0.26), 0 0 0 1px rgba(20, 32, 51, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(20, 32, 51, 0.3), 0 0 0 1px rgba(20, 32, 51, 0.1);
}

.whatsapp-float:focus-visible {
  outline: 4px solid rgba(126, 201, 221, 0.38);
  outline-offset: 4px;
}

.whatsapp-float svg {
  display: block;
  width: 34px;
  height: 34px;
}

.whatsapp-bubble {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.whatsapp-phone {
  fill: currentColor;
}

.whatsapp-float[hidden] {
  display: none;
}

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

  .simulation-panel {
    max-width: 620px;
  }

  .hero-visual {
    left: auto;
    right: -12%;
    bottom: 34%;
    width: 48vw;
    opacity: 0.42;
  }

  .product-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(20, 32, 51, 0.14);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .split-fields,
  .product-grid,
  .timeline,
  .social-proof-section,
  .security-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .simulation-panel {
    width: 100%;
  }

  .product-card,
  .timeline article {
    min-height: auto;
  }

  .product-card-head {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .product-icon {
    width: 112px;
    height: 112px;
  }

  .instagram-panel,
  .instagram-panel iframe {
    min-height: 460px;
    height: 460px;
  }

  .social-band {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .instagram-panel-cta {
    grid-column: 1;
    justify-self: center;
    margin-top: -28px;
  }

  .social-band-actions {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .social-links-group {
    justify-items: center;
    margin-left: 0;
  }

  .social-links {
    justify-content: center;
  }

  .site-footer {
    align-items: start;
  }

  .footer-link {
    justify-self: start;
  }

  .site-footer > a {
    justify-self: center;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions .cookie-button,
  .cookie-modal-actions .cookie-button {
    flex: 1 1 100%;
  }

  .cookie-modal-header,
  .cookie-modal-content,
  .cookie-modal-actions {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cookie-category {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-float {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-width: 3px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }

  .whatsapp-callout {
    --callout-size: 124px;
    --callout-right: max(34px, calc(env(safe-area-inset-right) + 30px));
    --callout-bottom: max(48px, calc(env(safe-area-inset-bottom) + 46px));
  }
}

@media (max-width: 420px) {
  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
    min-width: 54px;
  }

  .whatsapp-callout {
    --callout-size: 108px;
    --callout-right: max(28px, calc(env(safe-area-inset-right) + 24px));
    --callout-bottom: max(46px, calc(env(safe-area-inset-bottom) + 44px));
  }
}
