:root {
  --sky-050: #f5fbff;
  --sky-100: #ebf9ff;
  --sky-200: #d8f2ff;
  --sky-300: #c1e9ff;
  --sky-400: #92d7ff;
  --sky-500: #4eb6f2;
  --sky-700: #0f4f76;
  --sky-900: #0a2740;
  --white: #ffffff;
  --ink: #12324a;
  --muted: rgba(18, 50, 74, 0.72);
  --line: rgba(15, 79, 118, 0.16);
  --shadow-soft: 0 22px 70px rgba(72, 146, 191, 0.18);
  --shadow-card: 0 16px 40px rgba(15, 79, 118, 0.1);
  --max-width: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-overlay-space: 6.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(146, 215, 255, 0.55), transparent 34%),
    linear-gradient(180deg, #f9fdff 0%, #ffffff 34%, #eef9ff 100%);
}

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

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

p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  color: var(--sky-900);
}

h1,
h2 {
  font-size: clamp(2.8rem, 5.8vw, 5.6rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.04em;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--sky-900);
  color: var(--white);
  transition: top 0.2s ease;
}

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

.topbar {
  padding: 0.9rem 1.5rem;
  background: linear-gradient(90deg, var(--sky-700), #116089);
  color: var(--white);
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.topbar p {
  color: inherit;
}

.site-header,
.section,
.proof-strip,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 5;
  margin-bottom: calc(var(--header-overlay-space) * -1);
  padding: 1.35rem 0 0.95rem;
  background: transparent;
}

.brand-block {
  display: grid;
  gap: 0.25rem;
}

.brand-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 79, 118, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky-700);
  backdrop-filter: blur(8px);
}

.brand {
  font-family: "Bitter", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--sky-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
  white-space: nowrap;
}

.button-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.icon-phone {
  mask-image: url("assets/icons/phone.svg");
  -webkit-mask-image: url("assets/icons/phone.svg");
}

.icon-whatsapp {
  mask-image: url("assets/icons/whatsapp.svg");
  -webkit-mask-image: url("assets/icons/whatsapp.svg");
}

.header-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-700), #1482c4);
  box-shadow: 0 16px 34px rgba(20, 130, 196, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 79, 118, 0.14);
  color: var(--sky-900);
}

.button-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #1fa855, #25d366);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
  align-items: center;
  gap: 3rem;
  min-height: calc(100svh - 150px);
  padding:
    calc(var(--header-overlay-space) + clamp(1.2rem, 2vw, 2rem))
    max(1rem, calc((100vw - var(--max-width)) / 2))
    clamp(2rem, 3vw, 3rem);
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.95), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(146, 215, 255, 0.5), transparent 22%),
    linear-gradient(135deg, rgba(209, 241, 255, 0.92), rgba(255, 255, 255, 0.86) 45%, rgba(229, 248, 255, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 182, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 182, 242, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 96%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
  max-width: 760px;
  padding-left: 0;
  animation: riseIn 0.8s ease both;
}

.hero h1 {
  max-width: 10.1ch;
  font-size: clamp(2.85rem, 4.7vw, 4.95rem);
  line-height: 0.95;
}

.hero-lead {
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.hero-highlights div {
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 79, 118, 0.16);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--sky-900);
  font-size: 1rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 42rem;
  animation: floatIn 0.95s ease both;
}

.hero-glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 182, 242, 0.22), transparent 70%);
  filter: blur(18px);
}

.lock-illustration {
  width: min(29rem, 80vw);
  filter: drop-shadow(0 32px 54px rgba(15, 79, 118, 0.16));
}

.hero-photo-stack {
  position: relative;
  width: min(38rem, 100%);
  min-height: 36rem;
}

.hero-photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 79, 118, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  inset: 1.5rem 1.5rem 6.2rem 3rem;
  transform: rotate(-4deg);
}

.hero-photo-secondary {
  right: -0.2rem;
  bottom: 1.4rem;
  width: 15rem;
  height: 11rem;
  transform: rotate(6deg);
}

.hero-micro-card {
  position: absolute;
  left: 1rem;
  bottom: 0.2rem;
  max-width: 17rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 79, 118, 0.12);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.hero-micro-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--sky-900);
  font-weight: 700;
}

.hero-micro-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.visual-note {
  position: absolute;
  right: 1rem;
  top: 1.1rem;
  max-width: 14rem;
  padding: 1.05rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 79, 118, 0.12);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.visual-note p {
  margin-bottom: 0.2rem;
  color: var(--sky-900);
  font-family: "Bitter", serif;
  font-size: 1.2rem;
}

.visual-note span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 4.5rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(15, 79, 118, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.strip-label {
  margin-bottom: 0.4rem;
  color: var(--sky-900);
  font-weight: 700;
}

.strip-text {
  font-size: 0.94rem;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 78ch;
  margin-bottom: 2.6rem;
}

.section-heading.narrow {
  max-width: 62ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(224, 246, 255, 0.88));
  border: 1px solid rgba(15, 79, 118, 0.1);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 79, 118, 0.13);
}

.service-media {
  margin: 0;
}

.service-media img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.service-body {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.15rem 1.3rem;
}

.service-tag {
  color: var(--sky-700);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-body h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.service-body p:last-child {
  font-size: 0.95rem;
  line-height: 1.68;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2.2rem;
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 1.25rem;
}

.scenario-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.scenario-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--sky-900);
  font-weight: 600;
}

.scenario-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
}

.story-panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(15, 79, 118, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(224, 246, 255, 0.86)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.story-panel article {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 79, 118, 0.08);
}

.panel-kicker {
  margin-bottom: 0.6rem;
  color: var(--sky-700);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-panel h3 {
  margin-bottom: 0.55rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.workflow-grid article {
  position: relative;
  padding: 2rem 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(219, 244, 255, 0.88));
  border: 1px solid rgba(15, 79, 118, 0.1);
  box-shadow: var(--shadow-card);
}

.workflow-grid span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-700), #2ea7ea);
  color: var(--white);
  font-weight: 700;
}

.workflow-grid h3 {
  margin-bottom: 0.55rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.areas-grid > div {
  padding: 1.35rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.areas-grid h3 {
  margin-bottom: 0.55rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(15, 79, 118, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.22s ease,
    transform 0.22s ease;
}

.faq-list details[open] {
  border-color: rgba(20, 130, 196, 0.28);
  transform: translateY(-1px);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--sky-900);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 79, 118, 0.08);
  color: var(--sky-700);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

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

.faq-list details p {
  padding-top: 0.9rem;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cta-copy {
  display: grid;
  gap: 1rem;
}

.cta-panel {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sky-900);
}

.cta-panel p,
.cta-panel span {
  color: var(--muted);
}

.full {
  width: 100%;
}

.cta-panel .button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--sky-900);
  border-color: rgba(15, 79, 118, 0.14);
}

.cta-panel .button-whatsapp {
  background: linear-gradient(135deg, #1ca04f, #25d366);
}

.site-footer {
  padding: 2.2rem 0 4.5rem;
  text-align: center;
  font-size: 0.92rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.25rem;
  margin-top: 0.95rem;
  color: var(--sky-700);
}

.site-footer__links a,
.footer-link-button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.legal-page .site-header {
  margin-bottom: 0;
  padding: 1.35rem 0;
}

.legal-main {
  padding-bottom: 4rem;
}

.legal-hero {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.legal-layout,
.legal-content {
  display: grid;
  gap: 1.25rem;
}

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

.legal-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.6rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 79, 118, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 249, 255, 0.92));
  box-shadow: 0 18px 50px rgba(15, 79, 118, 0.08);
  overflow-x: auto;
}

.legal-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.legal-list li {
  line-height: 1.7;
}

.legal-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 0.95rem 0.9rem;
  border-top: 1px solid rgba(15, 79, 118, 0.12);
  text-align: left;
  vertical-align: top;
  color: var(--muted);
}

.legal-table th {
  color: var(--sky-900);
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(194, 234, 255, 0.3);
}

.legal-card code {
  padding: 0.15rem 0.42rem;
  border-radius: 999px;
  background: rgba(194, 234, 255, 0.45);
  color: var(--sky-700);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

body.modal-open,
body.cookie-modal-open {
  overflow: hidden;
}

.contact-gate[hidden] {
  display: none;
}

.contact-gate {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.contact-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 39, 64, 0.42);
  backdrop-filter: blur(8px);
}

.contact-gate__panel {
  position: relative;
  width: min(100%, 38rem);
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 79, 118, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(228, 247, 255, 0.94));
  box-shadow: 0 30px 80px rgba(10, 39, 64, 0.2);
}

.contact-gate__panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.contact-gate__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 79, 118, 0.08);
  color: var(--sky-900);
  font-size: 1.5rem;
  cursor: pointer;
}

.contact-gate__benefits {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-gate__benefits li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-gate__benefits li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--sky-700);
  font-weight: 700;
}

.contact-gate__form {
  display: grid;
  gap: 0.85rem;
}

.contact-gate__label {
  color: var(--sky-900);
  font-weight: 700;
}

.contact-gate__input {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(15, 79, 118, 0.18);
  border-radius: 18px;
  font: inherit;
  color: var(--sky-900);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-gate__input:focus {
  outline: 2px solid rgba(20, 130, 196, 0.22);
  border-color: rgba(20, 130, 196, 0.38);
}

.contact-gate__note {
  font-size: 0.9rem;
}

.contact-gate__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.contact-gate__consent input {
  margin: 0.2rem 0 0;
  accent-color: var(--sky-700);
}

.contact-gate__consent a {
  color: var(--sky-700);
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.contact-gate__error {
  min-height: 1.15rem;
  color: #b42318;
  font-size: 0.9rem;
}

.contact-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.contact-gate__actions .button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-gate__direct-action {
  background: rgba(255, 255, 255, 0.96);
  color: var(--sky-900);
  border: 1px solid rgba(15, 79, 118, 0.14);
  box-shadow: 0 16px 34px rgba(15, 79, 118, 0.12);
}

.cookie-banner[hidden],
.cookie-preferences[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 65;
}

.cookie-banner__panel {
  width: min(100%, 72rem);
  display: grid;
  gap: 1rem;
  margin-inline: auto;
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 79, 118, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(228, 246, 255, 0.96));
  box-shadow: 0 24px 70px rgba(10, 39, 64, 0.18);
}

.cookie-banner__copy {
  display: grid;
  gap: 0.7rem;
}

.cookie-banner__copy h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-banner__meta {
  font-size: 0.92rem;
}

.cookie-banner__meta a {
  color: var(--sky-700);
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-preferences__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 39, 64, 0.48);
  backdrop-filter: blur(8px);
}

.cookie-preferences__panel {
  position: relative;
  width: min(100%, 50rem);
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 79, 118, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(231, 247, 255, 0.95));
  box-shadow: 0 30px 80px rgba(10, 39, 64, 0.24);
}

.cookie-preferences__panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.cookie-preferences__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 79, 118, 0.08);
  color: var(--sky-900);
  font-size: 1.5rem;
  cursor: pointer;
}

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(15, 79, 118, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.consent-option--locked {
  background: rgba(205, 239, 255, 0.5);
}

.consent-option__copy {
  display: grid;
  gap: 0.4rem;
}

.consent-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

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

.consent-toggle__track {
  position: relative;
  width: 3.4rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(15, 79, 118, 0.18);
  transition: background-color 0.2s ease;
}

.consent-toggle__track::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 16px rgba(10, 39, 64, 0.16);
  transition: transform 0.2s ease;
}

.consent-toggle input:checked + .consent-toggle__track {
  background: linear-gradient(135deg, var(--sky-700), #1693dc);
}

.consent-toggle input:checked + .consent-toggle__track::after {
  transform: translateX(1.4rem);
}

.consent-toggle input:disabled + .consent-toggle__track {
  background: linear-gradient(135deg, #2b8ec7, #4eb6f2);
}

.cookie-preferences__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.floating-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: grid;
  gap: 0.7rem;
}

.floating-whatsapp,
.floating-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.floating-whatsapp .button-icon,
.floating-call .button-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.floating-call {
  background: linear-gradient(135deg, var(--sky-700), #1793db);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(23, 147, 219, 0.3);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #1ca04f, #25d366);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    margin-bottom: calc(var(--header-overlay-space) * -0.92);
  }

  .legal-page .site-header {
    margin-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
    padding-top: calc(var(--header-overlay-space) + 0.5rem);
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 35rem;
  }

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

  .proof-strip,
  .workflow-grid,
  .cta,
  .split-story,
  .areas-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.35rem, 14vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .site-header {
    display: none;
  }

  .legal-page .site-header {
    display: grid;
    margin-bottom: 0;
    padding-bottom: 1rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-gate__actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    inset: auto 0.75rem 0.75rem 0.75rem;
  }

  .cookie-banner__actions,
  .cookie-preferences__actions {
    display: grid;
  }

  .consent-option {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .proof-strip,
  .section,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    padding-bottom: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-photo-stack {
    min-height: 28rem;
  }

  .legal-table {
    min-width: 34rem;
  }

  .hero-photo-main {
    inset: 0.8rem 1rem 5rem 1rem;
    transform: rotate(-3deg);
  }

  .hero-photo-secondary {
    right: 0.2rem;
    bottom: 1rem;
    width: 11rem;
    height: 8rem;
  }

  .hero-micro-card {
    left: 0.5rem;
    right: 3.5rem;
    max-width: none;
  }

  .visual-note {
    right: 0.5rem;
    left: auto;
    top: 0.5rem;
    max-width: none;
  }

  .floating-actions {
    left: 0;
    right: 0;
    bottom: 0.85rem;
    width: auto;
    display: block;
    pointer-events: none;
  }

  .floating-whatsapp,
  .floating-call {
    position: fixed;
    bottom: 0.85rem;
    width: 4.15rem;
    height: 4.15rem;
    padding: 0;
    border-radius: 50%;
    gap: 0;
    font-size: 0;
    pointer-events: auto;
  }

  .floating-whatsapp {
    left: 0.85rem;
  }

  .floating-call {
    right: 0.85rem;
  }

  .floating-whatsapp .button-icon,
  .floating-call .button-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
