:root {
  --ink: #f5f7f7;
  --muted: #aab6b9;
  --surface: #12191d;
  --line: rgba(255, 255, 255, 0.1);
  --cyan: #08b8db;
  --yellow: #ffd323;
  --green: #22d36f;
  --page: #081014;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(8, 184, 219, 0.12), transparent 30rem),
    radial-gradient(circle at 86% 4%, rgba(255, 211, 35, 0.09), transparent 26rem),
    var(--page);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

[hidden] {
  display: none !important;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(34, 211, 111, 0.52);
  border-radius: 999px;
  background: var(--green);
  color: #052511;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(34, 211, 111, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(34, 211, 111, 0.27);
}

.button img {
  width: 21px;
  height: 21px;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  justify-self: end;
  font-size: 0.84rem;
}

.button-small img {
  width: 18px;
  height: 18px;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 68px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  grid-template-areas:
    "intro project"
    "contact project";
  grid-template-rows: auto auto;
  align-content: center;
  align-items: start;
  column-gap: clamp(44px, 7vw, 92px);
  row-gap: 0;
}

.hero-intro {
  grid-area: intro;
}

.hero-contact {
  grid-area: contact;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 14px;
  border: 1px solid rgba(8, 184, 219, 0.28);
  border-radius: 999px;
  background: rgba(8, 184, 219, 0.08);
  color: #70ddf1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.65rem, 5.1vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: #c5ced0;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.65;
}

.brand-disclosure {
  max-width: 590px;
  margin: 15px 0 0;
  color: #8fa0a4;
  font-size: 0.78rem;
  line-height: 1.55;
}

.brand-disclosure strong {
  color: #c5ced0;
}

.contact-consent {
  max-width: 610px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-consent.has-error {
  border-color: rgba(255, 211, 35, 0.72);
  background: rgba(255, 211, 35, 0.06);
}

.contact-consent label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #dfe7e8;
  font-size: 0.86rem;
  line-height: 1.5;
  cursor: pointer;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.contact-consent input:focus-visible {
  outline: 3px solid rgba(8, 184, 219, 0.6);
  outline-offset: 3px;
}

.contact-consent > p {
  margin: 9px 0 0 31px;
  color: #8fa0a4;
  font-size: 0.75rem;
  line-height: 1.5;
}

.contact-consent a,
.cookie-links a,
.legal-content a {
  color: #70ddf1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-consent .consent-error {
  color: var(--yellow);
  font-weight: 700;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.text-link {
  color: #d8e1e3;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.microcopy {
  margin: 13px 0 0;
  color: #849297;
  font-size: 0.82rem;
}

.trust-list {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  gap: 14px 20px;
  flex-wrap: wrap;
  color: #b8c3c6;
  font-size: 0.78rem;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.hero-project {
  grid-area: project;
  align-self: center;
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
}

.hero-project::after {
  content: "";
  position: absolute;
  inset: auto 18% -32px;
  height: 54px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(8, 184, 219, 0.22);
  filter: blur(34px);
}

.project-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 3px 5px 15px;
}

.project-heading span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-heading strong {
  color: #dfe6e8;
  font-size: 0.85rem;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  overflow: hidden;
  border-radius: 19px;
}

.before-after figure {
  position: relative;
  height: min(59vh, 590px);
  margin: 0;
  overflow: hidden;
  background: #182025;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 12, 15, 0.8);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.before-after figure:last-child figcaption {
  background: rgba(34, 211, 111, 0.9);
  color: #052511;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  align-items: end;
  gap: 40px;
}

.section-heading.compact {
  align-items: start;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading > p,
.qualification-intro + p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.project-card-copy {
  padding: 22px 22px 18px;
}

.project-card-copy span {
  color: var(--muted);
  font-size: 0.74rem;
}

.project-card-copy h3 {
  margin: 5px 0 0;
  font-size: 1.25rem;
}

.project-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.project-pair figure {
  position: relative;
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: #1a2327;
}

.project-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-pair figcaption {
  position: absolute;
  left: 9px;
  bottom: 9px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(4, 11, 14, 0.8);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.project-pair figure:last-child figcaption {
  background: var(--green);
  color: #052511;
}

.qualification {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  border: 1px solid rgba(8, 184, 219, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(8, 184, 219, 0.1), transparent 52%),
    var(--surface);
}

.qualification h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.qualification ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  list-style: none;
}

.qualification li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.qualification li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.qualification li strong {
  color: var(--yellow);
  font-size: 0.9rem;
}

.qualification li span {
  color: #bec8ca;
  font-size: 0.88rem;
  line-height: 1.55;
}

.services {
  padding-bottom: 70px;
}

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

.service-grid article {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(8, 184, 219, 0.07), transparent 52%),
    var(--surface);
}

.service-grid article > span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-grid h3 {
  margin: auto 0 12px;
  color: var(--ink);
  font-size: 1.25rem;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}

.steps li {
  min-height: 245px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.steps > li > span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.steps h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

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

.service-area {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 110px;
  padding: clamp(36px, 6vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(40px, 7vw, 90px);
  border: 1px solid rgba(255, 211, 35, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 211, 35, 0.09), transparent 48%),
    var(--surface);
}

.service-area h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.service-area-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.service-area-copy p {
  margin: 0;
  color: #b9c4c6;
  line-height: 1.7;
}

.cta-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 211, 35, 0.14), transparent 45%),
    linear-gradient(315deg, rgba(8, 184, 219, 0.12), transparent 50%),
    #182126;
}

.cta-panel h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
}

.cta-panel > div > p:last-child {
  margin: 18px 0 0;
  color: #b9c4c6;
  line-height: 1.6;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(48px, 8vw, 110px);
}

.faq .section-heading {
  display: block;
  margin: 0;
}

.faq-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.faq-list details {
  padding: 21px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
}

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

.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 110px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
}

footer strong {
  color: var(--ink);
}

footer p {
  margin: 8px 0 0;
  line-height: 1.55;
}

.footer-contact,
.footer-company {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contact a:hover,
.footer-company a:hover {
  color: var(--cyan);
}

.footer-company > div {
  margin-top: 6px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.privacy-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.privacy-settings:hover {
  color: var(--cyan);
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 50;
  width: min(960px, calc(100% - 44px));
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(112, 221, 241, 0.32);
  border-radius: 22px;
  background: rgba(12, 21, 25, 0.98);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px);
}

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

.legal-faq {
  margin-top: 42px;
}

.legal-faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.legal-faq details + details {
  margin-top: 10px;
}

.legal-faq summary {
  cursor: pointer;
  font-weight: 750;
}

.legal-faq p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.cookie-kicker {
  margin: 0 0 5px;
  color: #70ddf1;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  letter-spacing: -0.025em;
}

.cookie-consent p:not(.cookie-kicker) {
  margin: 9px 0 0;
  color: #b7c3c5;
  font-size: 0.84rem;
  line-height: 1.55;
}

.cookie-links {
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
}

.cookie-actions {
  display: grid;
  gap: 9px;
  min-width: 230px;
}

.cookie-button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button-primary {
  border: 1px solid rgba(34, 211, 111, 0.55);
  background: var(--green);
  color: #052511;
}

.cookie-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--ink);
}

.cookie-button:hover {
  filter: brightness(1.06);
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  width: min(900px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-back {
  color: #d8e1e3;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.legal-content > h1 {
  max-width: none;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.legal-updated {
  margin: 16px 0 0;
  color: #839196;
  font-size: 0.84rem;
}

.legal-intro {
  margin: 34px 0 0;
  color: #c5ced0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.legal-content section {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-content section h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: -0.025em;
}

.legal-content section p,
.legal-content section li {
  color: #aebabc;
  line-height: 1.75;
}

.legal-content section p {
  margin: 16px 0 0;
}

.legal-content section ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-content section li + li {
  margin-top: 8px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--green);
  color: #052511;
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp img {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "project"
      "contact";
    grid-template-rows: auto;
    row-gap: 36px;
    padding-top: 48px;
  }

  .before-after figure {
    height: 560px;
  }

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

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

  .project-pair figure {
    height: 500px;
  }

  .qualification,
  .faq,
  .service-area {
    grid-template-columns: 1fr;
  }

  .qualification {
    gap: 40px;
  }

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

  .steps li {
    min-height: 200px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .button {
    width: fit-content;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .qualification,
  .cta-panel,
  .service-area,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small,
  .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 24px 0 48px;
    row-gap: 20px;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 11px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.8rem);
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 15px;
    font-size: 0.93rem;
    line-height: 1.48;
  }

  .brand-disclosure {
    margin-top: 12px;
    font-size: 0.73rem;
  }

  .contact-consent {
    margin-top: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .text-link {
    text-align: center;
  }

  .trust-list {
    display: grid;
  }

  .hero-project {
    padding: 8px;
    border-radius: 18px;
  }

  .project-heading {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 3px 4px 9px;
  }

  .project-heading span {
    font-size: 0.63rem;
  }

  .project-heading strong {
    font-size: 0.72rem;
    text-align: right;
  }

  .before-after {
    gap: 5px;
    border-radius: 15px;
  }

  .before-after figure {
    height: 205px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .project-pair figure {
    height: 310px;
  }

  .qualification {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .qualification li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .service-grid article {
    min-height: 220px;
  }

  .steps li {
    min-height: 180px;
  }

  .service-area {
    margin-bottom: 78px;
    padding: 34px 24px;
    gap: 28px;
    border-radius: 24px;
  }

  .cta-panel {
    gap: 30px;
    border-radius: 24px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .faq {
    gap: 34px;
  }

  footer {
    padding-bottom: 124px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-consent {
    padding: 15px;
  }

  .contact-consent > p {
    margin-left: 29px;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
    max-height: calc(100vh - 28px);
    padding: 19px;
    overflow-y: auto;
    gap: 18px;
    border-radius: 18px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .legal-header,
  .legal-content {
    width: min(100% - 28px, 900px);
  }

  .legal-header .brand small {
    display: block;
  }

  .legal-content {
    padding: 54px 0 90px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}

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