:root {
  --brand-950: #07143d;
  --brand-900: #071b69;
  --brand-850: #091e86;
  --brand-800: #102db6;
  --brand-700: #2139da;
  --brand-600: #2c53f6;
  --aqua-500: #62c7db;
  --aqua-200: #d9f6fb;
  --green: #25d366;
  --green-dark: #19a84e;
  --ink: #071332;
  --ink-soft: #56617d;
  --muted: #6f7b96;
  --bg: #f4f7fd;
  --card: #ffffff;
  --border: #e5eaf5;
  --shadow-sm: 0 10px 30px rgba(17, 42, 96, 0.06);
  --shadow-md: 0 18px 44px rgba(12, 37, 89, 0.12);
  --shadow-brand: 0 20px 54px rgba(30, 70, 211, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--card);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  background: white;
  color: var(--brand-900);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-label,
.eyebrow {
  margin-bottom: 13px;
  color: var(--brand-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(98, 199, 219, 0.56);
  outline-offset: 3px;
}

.btn-whatsapp {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  box-shadow: 0 15px 34px rgba(37, 211, 102, 0.38);
}

.btn-large {
  min-height: 58px;
  padding-inline: 27px;
  font-size: 15px;
}

.btn-outline-light {
  min-height: 52px;
  border: 1px solid rgba(117, 166, 255, 0.75);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.09);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 22px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 203px;
  height: auto;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 46px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 2px;
  background: var(--aqua-500);
  content: "";
  transition: transform 190ms ease;
}

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

.btn-header {
  min-height: 48px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--brand-900);
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 79% 38%, rgba(87, 126, 255, 0.58) 0%, rgba(87, 126, 255, 0) 30%),
    radial-gradient(circle at 14% 14%, rgba(43, 92, 249, 0.68) 0%, rgba(43, 92, 249, 0) 40%),
    linear-gradient(112deg, #111f92 0%, #142ec7 51%, #081851 100%);
}

.hero-background::before,
.hero-background::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.hero-background::before {
  right: 10%;
  bottom: -120px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-background::after {
  top: 128px;
  right: 25%;
  width: 184px;
  height: 184px;
  background: rgba(98, 199, 219, 0.10);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 48px;
  align-items: end;
  padding-top: 130px;
}

.hero-copy {
  align-self: center;
  padding-bottom: 60px;
}

.hero .eyebrow {
  color: var(--aqua-500);
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 25px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.2vw, 55px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.11;
}

.hero h1 span {
  color: var(--aqua-500);
}

.hero-description {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.cta-helper {
  display: flex;
  max-width: 154px;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.cta-helper svg {
  flex-shrink: 0;
  width: 26px;
  color: var(--aqua-500);
}

.hero-visual {
  position: relative;
  display: flex;
  height: 568px;
  justify-content: center;
  align-items: flex-end;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(442px, 100%);
  height: 558px;
  border-radius: 175px 175px 34px 34px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 32px 54px rgba(1, 9, 43, 0.25);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 17px 16px;
  border-radius: 16px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow-brand);
}

.floating-card p {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.card-channel {
  top: 174px;
  left: 0;
  min-width: 150px;
}

.platforms {
  display: grid;
  gap: 9px;
  color: var(--brand-850);
  font-size: 12px;
  font-weight: 700;
}

.platforms span {
  display: flex;
  gap: 7px;
  align-items: center;
}

.platforms svg {
  width: 15px;
  color: var(--brand-600);
}

.card-contact {
  right: 0;
  bottom: 76px;
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 150px;
}

.card-contact svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 9px;
  color: var(--brand-600);
  background: #edf2ff;
}

.card-contact p {
  margin-bottom: 4px;
}

.card-contact strong {
  color: var(--brand-850);
  font-size: 14px;
}

.benefits {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--border);
  background: white;
}

.benefits-grid {
  display: grid;
  min-height: 118px;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.benefits h2 {
  max-width: 220px;
  font-size: 17px;
  line-height: 1.38;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--brand-700);
}

.benefit-item svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.benefit-item p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.benefit-item strong {
  color: var(--ink);
  font-size: 13px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 68px;
  align-items: center;
}

.section-copy h2,
.section-heading h2 {
  max-width: 520px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 39px);
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.section-copy h2 span {
  color: var(--brand-600);
}

.section-copy > p:not(.section-label) {
  max-width: 515px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.check-list svg {
  flex-shrink: 0;
  width: 19px;
  color: var(--brand-700);
  fill: rgba(33, 57, 218, 0.07);
}

.about-action {
  display: flex;
  gap: 20px;
  align-items: center;
}

.about-action small {
  max-width: 135px;
  color: var(--brand-600);
  font-size: 12px;
  line-height: 1.5;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.experience-card {
  position: absolute;
  top: 52px;
  left: -32px;
  display: grid;
  gap: 5px;
  padding: 21px 20px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(138deg, var(--brand-700), var(--brand-850));
  box-shadow: var(--shadow-brand);
}

.experience-card strong {
  font-size: 30px;
  letter-spacing: -0.05em;
}

.experience-card span {
  font-size: 11px;
  line-height: 1.45;
}

.illustration-note {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: white;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.workflow {
  color: white;
  background:
    radial-gradient(circle at 50% 0, rgba(54, 103, 255, 0.4), transparent 32%),
    linear-gradient(115deg, #06143e, #081b61 48%, #06143e);
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading.center h2 {
  max-width: 680px;
}

.section-heading.light .section-label {
  color: var(--aqua-500);
}

.section-heading.light h2 {
  color: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.step {
  position: relative;
  width: 238px;
  min-height: 211px;
  padding: 48px 25px 25px;
  border-radius: 18px;
  color: var(--ink);
  background: white;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-icon {
  position: absolute;
  top: -27px;
  left: 50%;
  display: flex;
  width: 58px;
  height: 58px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #2778ff, #1540dc);
  box-shadow: 0 10px 22px rgba(37, 91, 246, 0.38);
}

.step-icon svg {
  width: 27px;
  height: 27px;
}

.step h3 {
  margin-bottom: 13px;
  font-size: 15px;
}

.step p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.62;
}

.step-arrow {
  color: var(--aqua-500);
}

.workflow-action {
  margin-top: 39px;
}

.center {
  text-align: center;
}

.services {
  background: #fff;
}

.services .section-heading h2 {
  max-width: 570px;
}

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

.service-card {
  position: relative;
  min-height: 240px;
  padding: 31px 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #d2ddfa;
  box-shadow: var(--shadow-md);
}

.service-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--brand-700);
  background: #eef3ff;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 16px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.service-card .badge {
  position: absolute;
  top: 19px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 7px;
  color: white;
  background: var(--brand-700);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.final-cta {
  padding: 10px 0 86px;
}

.final-cta-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 176px;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 38px 54px;
  border-radius: 26px;
  color: white;
  background: linear-gradient(105deg, var(--brand-900), var(--brand-700) 76%, #1f66fa);
}

.final-cta-card .section-label {
  color: var(--aqua-500);
  margin-bottom: 10px;
}

.final-cta-card h2 {
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: -0.045em;
}

.final-cta-card p:not(.section-label) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.final-cta-card .btn {
  z-index: 1;
  flex-shrink: 0;
  margin-right: 86px;
}

.rocket {
  position: absolute;
  right: 24px;
  bottom: -17px;
  width: 84px;
  height: 84px;
  transform: rotate(-18deg);
  color: rgba(255, 255, 255, 0.75);
  stroke-width: 1.3;
}

.site-footer {
  padding: 50px 0 22px;
  color: white;
  background: #061133;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.48fr 0.8fr 1.42fr 0.9fr;
  gap: 44px;
  padding-bottom: 42px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: white;
  font-size: 14px;
}

.site-footer ul,
.footer-links {
  display: grid;
  gap: 13px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.footer-links h2 {
  margin-bottom: 5px;
}

.site-footer a:hover,
.cookie-settings:hover {
  color: white;
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-list svg {
  flex-shrink: 0;
  width: 16px;
  color: var(--aqua-500);
}

.cookie-settings {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.67);
  background: transparent;
  font-size: 13px;
  text-align: left;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 23px;
  bottom: 23px;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.44);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 25px;
  bottom: 22px;
  left: 25px;
  display: flex;
  max-width: 920px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: white;
  box-shadow: 0 22px 60px rgba(5, 18, 53, 0.2);
}

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

.cookie-banner strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.cookie-banner p {
  max-width: 555px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-banner p a {
  color: var(--brand-600);
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.btn-cookie-secondary,
.btn-cookie-primary {
  min-height: 44px;
  border: 1px solid var(--border);
  padding-inline: 16px;
  font-size: 13px;
}

.btn-cookie-secondary {
  background: white;
}

.btn-cookie-primary {
  border-color: var(--brand-700);
  color: white;
  background: var(--brand-700);
}

.legal-page {
  background: var(--bg);
}

.legal-header {
  padding: 17px 0;
  background: var(--brand-900);
}

.legal-content {
  max-width: 820px;
  padding-block: 50px 86px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--brand-600);
  font-size: 14px;
  font-weight: 600;
}

.legal-content h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 46px);
  letter-spacing: -0.055em;
}

.legal-alert {
  margin-bottom: 34px;
  padding: 18px 21px;
  border: 1px solid #f2d495;
  border-radius: 14px;
  color: #5b460b;
  background: #fff5dd;
  font-size: 14px;
  line-height: 1.65;
}

.legal-content h2 {
  margin: 32px 0 12px;
  font-size: 19px;
}

.legal-content h2 + p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.legal-content h2 + p a {
  color: var(--brand-600);
}

@media (max-width: 1120px) {
  .nav-content {
    gap: 28px;
  }

  .nav-links {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 24px;
  }

  .card-channel {
    left: -14px;
  }

  .card-contact {
    right: -6px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(238px, 1fr));
    gap: 49px 30px;
  }

  .step {
    width: auto;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .site-header {
    padding-top: 15px;
  }

  .brand img {
    width: 182px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-content {
    position: fixed;
    top: 77px;
    right: 17px;
    left: 17px;
    display: none;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: #0b1b65;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
  }

  .nav-content.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .nav-links a {
    display: block;
    padding: 13px;
    border-radius: 9px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .hero-grid {
    min-height: unset;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    padding-top: 126px;
    padding-bottom: 37px;
  }

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

  .hero h1 {
    font-size: clamp(37px, 8vw, 48px);
  }

  .hero-visual {
    height: 500px;
  }

  .portrait-frame {
    height: 493px;
    width: min(380px, 82%);
    border-radius: 150px 150px 30px 30px;
  }

  .card-channel {
    top: 132px;
    left: max(calc(50% - 235px), 0px);
  }

  .card-contact {
    right: max(calc(50% - 238px), 0px);
    bottom: 42px;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
    padding-block: 26px;
  }

  .benefits h2 {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 5px;
    text-align: center;
  }

  .benefit-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-visual {
    order: 2;
  }

  .experience-card {
    top: 28px;
    left: 16px;
  }

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

  .final-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 34px 42px;
  }

  .final-cta-card .btn {
    margin-right: 0;
  }

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

@media (max-width: 620px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .site-header {
    padding-top: 13px;
  }

  .brand img {
    width: 158px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-content {
    top: 67px;
  }

  .hero-grid {
    padding-top: 102px;
    padding-bottom: 26px;
  }

  .hero .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(32px, 10.2vw, 41px);
    line-height: 1.14;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.64;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-top: 27px;
  }

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

  .cta-helper {
    max-width: none;
  }

  .hero-visual {
    height: 415px;
    margin-top: 3px;
  }

  .portrait-frame {
    width: 84%;
    height: 409px;
    border-radius: 115px 115px 22px 22px;
  }

  .card-channel {
    top: 93px;
    left: 0;
    min-width: 125px;
    padding: 13px;
  }

  .card-contact {
    right: 0;
    bottom: 31px;
    min-width: 126px;
    padding: 12px;
  }

  .benefits-grid {
    gap: 20px 5px;
    padding-block: 25px;
  }

  .benefits h2 {
    font-size: 16px;
  }

  .benefit-item svg {
    width: 25px;
    height: 25px;
  }

  .benefit-item p,
  .benefit-item strong {
    font-size: 11px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 28px;
  }

  .section-copy > p:not(.section-label) {
    font-size: 14px;
  }

  .about-action {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-action .btn {
    width: 100%;
  }

  .experience-card {
    top: 13px;
    left: 12px;
    padding: 15px 15px;
  }

  .experience-card strong {
    font-size: 23px;
  }

  .illustration-note {
    right: 10px;
    bottom: 10px;
  }

  .workflow .section-heading {
    margin-bottom: 53px;
  }

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

  .step {
    min-height: unset;
    padding-bottom: 23px;
  }

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

  .service-card {
    min-height: unset;
    text-align: left;
    padding: 24px;
  }

  .service-icon {
    margin-bottom: 17px;
  }

  .final-cta {
    padding: 0 0 58px;
  }

  .final-cta-card {
    padding: 27px 25px 33px;
    gap: 25px;
  }

  .final-cta-card h2 {
    font-size: 23px;
  }

  .final-cta-card .btn {
    width: 100%;
  }

  .rocket {
    right: 16px;
    bottom: -5px;
    width: 55px;
    height: 55px;
    opacity: 0.45;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .copyright {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 17px;
    bottom: 16px;
    width: 55px;
    height: 55px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
    padding: 17px;
  }

  .cookie-actions {
    flex-direction: column-reverse;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .legal-content {
    padding-block: 38px 60px;
  }
}
