:root {
  --blue-950: #07275c;
  --blue-900: #083b86;
  --blue-800: #0758bc;
  --blue-600: #079cff;
  --blue-100: #e9f6ff;
  --green: #05ba5f;
  --green-dark: #04994f;
  --ink: #10336e;
  --muted: #49668f;
  --line: #d9e6f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 55, 111, .14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(233, 246, 255, .9) 0%, rgba(255, 255, 255, .98) 44%, rgba(238, 249, 255, .9) 100%);
}

.bubble-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  display: block;
  top: var(--bubble-top);
  right: var(--bubble-desktop-right, var(--bubble-right, auto));
  left: var(--bubble-desktop-left, var(--bubble-left, auto));
  width: var(--bubble-size, 72px);
  height: var(--bubble-size, 72px);
  opacity: var(--bubble-opacity, .52);
  filter: saturate(1.08);
  animation: foam-drift var(--bubble-speed, 12s) ease-in-out infinite alternate;
  animation-delay: var(--bubble-delay, 0s);
}

.bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--bubble-line, rgba(7, 156, 255, .48));
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 25%, rgba(255, 255, 255, .95) 0 12%, rgba(255, 255, 255, 0) 36%),
    var(--bubble-fill, rgba(218, 243, 255, .76));
  box-shadow:
    inset 0 0 30px rgba(7, 156, 255, .18),
    0 12px 28px rgba(7, 88, 188, .08);
  animation: bubble-pulse 6.8s ease-in-out infinite alternate;
  animation-delay: calc(var(--bubble-delay, 0s) - 1.5s);
}

main > section {
  position: relative;
  z-index: 1;
}

main > section > .container {
  position: relative;
  z-index: 1;
}

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

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

.svg-sprite {
  display: none;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(217, 230, 247, .6);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 343px;
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-button {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 1 auto;
  color: var(--blue-950);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: transparent;
}

.nav a.active,
.nav a:hover {
  color: var(--blue-600);
}

.nav a.active::after {
  background: var(--blue-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn svg {
  font-size: 1.25rem;
}

.btn .whatsapp-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn-green {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 30px rgba(5, 186, 95, .28);
}

.btn-green:hover {
  background: var(--green-dark);
}

.btn-light {
  color: var(--blue-800);
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: 0 10px 22px rgba(7, 88, 188, .08);
}

.btn-header {
  min-height: 42px;
  padding: 0 18px;
  font-size: .68rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 10px;
  background: transparent;
}

.hero::before {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(410px, .9fr) minmax(560px, 1.1fr);
  align-items: start;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
}

.hero-grid::before {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0;
  padding: 24px 42px 34px 28px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero h1 {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--blue-950);
  font-size: clamp(2.2rem, 3.9vw, 3.2rem);
  font-weight: 900;
  line-height: calc(.98em + 2px);
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue-600);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

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

.check-list svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--blue-600);
  font-size: 1.2rem;
}

.hero .check-list {
  gap: 14px;
  font-size: 1.16rem;
}

.hero .check-list svg {
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 520px;
  margin-left: -100px;
  border-radius: 0 0 0 18px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -2px;
  z-index: 1;
  width: 42%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .96) 28%, rgba(255, 255, 255, .7) 58%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: right center;
  border-radius: 0 0 0 18px;
}

.service-strip {
  position: relative;
  overflow: hidden;
  padding: 6px 0 54px;
}

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

.strip-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 184px;
  padding: 28px 20px;
  color: var(--blue-950);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(9, 55, 111, .05);
}

.strip-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.strip-grid strong {
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.strip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}

.promo {
  padding: 24px 0 52px;
}

.promo-carousel {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promo-track {
  display: flex;
  transition: transform .45s ease;
}

.promo-card {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
}

.promo-image {
  display: block;
  width: 100%;
  aspect-ratio: 1808 / 870;
  object-fit: cover;
}

.promo-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px 28px 18px;
  color: #fff;
  background: linear-gradient(180deg, #0a3675 0%, var(--blue-950) 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.promo-actions small {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.promo-card .btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  font-size: .68rem;
  box-shadow: 0 12px 24px rgba(5, 186, 95, .24);
}

.promo-actions small a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.promo-actions small a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--blue-600);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(7, 156, 255, .16);
}

.promo-actions small a:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .34);
  text-decoration: none;
  transform: translateY(-1px);
}

.promo-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue-950);
  cursor: pointer;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(217, 230, 247, .8);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(9, 55, 111, .16);
  transform: translateY(-50%);
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.promo-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.promo-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.promo-arrow.prev {
  left: 18px;
}

.promo-arrow.next {
  right: 18px;
}

.promo-arrow.prev svg {
  transform: rotate(180deg);
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 0 0 16px;
  background: var(--blue-950);
}

.promo-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .55);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(7, 39, 92, .12);
}

.promo-dot[aria-pressed="true"] {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .28);
}

.promo-carousel.single-slide .promo-dots {
  display: none;
}

.section-title.promo-title {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto -20px;
  padding: 13px 28px;
  color: var(--blue-950);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(9, 55, 111, .16);
}

.section-title.promo-title span {
  width: 10px;
  height: 10px;
  margin: 0;
  background: var(--blue-600);
  box-shadow: 0 0 0 6px var(--blue-100);
}

.section-title.promo-title h2 {
  color: inherit;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: -.01em;
}

.section-title {
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  text-align: center;
}

.section-title span {
  display: block;
  width: 96px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--blue-600);
  border-radius: 999px;
}

.section-title h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 900;
}

.section-title p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .98rem;
  font-weight: 700;
}

.ideal {
  position: relative;
  overflow: hidden;
  padding: 52px 0 56px;
  background: transparent;
}

.ideal-grid {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.42fr);
  gap: 44px;
  align-items: center;
  overflow: hidden;
  padding: 44px 48px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(217, 230, 247, .82);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ideal-copy {
  position: relative;
  padding-left: 0;
}

.ideal-copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 12px;
  color: var(--blue-800);
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ideal-copy h2 {
  max-width: 390px;
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}

.ideal-copy p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 1.55;
}

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

.ideal-list li {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 152px;
  overflow: hidden;
  padding: 24px 22px 22px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(9, 55, 111, .06);
}

.ideal-list li::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue-600), var(--green));
}

.ideal-list i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--blue-800);
  border-radius: 8px;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px rgba(7, 88, 188, .2);
}

.ideal-list strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.ideal-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.45;
}

.services {
  position: relative;
  overflow: hidden;
  padding: 66px 0 62px;
  background: transparent;
}

.services .section-title {
  max-width: 780px;
  margin: 0 auto 42px;
}

.services .section-title span {
  width: 82px;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--blue-600));
}

.services .section-title h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.16;
}

.services .section-title p {
  max-width: 690px;
  margin-top: 14px;
  font-size: 1.03rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 438px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(9, 55, 111, .06);
}

.service-card img {
  width: 100%;
  height: 210px;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #f8fbff;
}

.floating-icon {
  position: absolute;
  top: 176px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #fff;
  background: var(--blue-800);
  border: 7px solid #fff;
  border-radius: 50%;
}

.floating-icon i {
  font-size: 1.9rem;
  line-height: 1;
}

.card-body {
  padding: 58px 24px 24px;
}

.card-body h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: 1.18rem;
  font-weight: 900;
}

.card-body p {
  min-height: 100px;
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.card-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: .9rem;
  font-weight: 900;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.steps {
  padding: 4px 0 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 14px 30px 0;
  text-align: center;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step b {
  position: absolute;
  top: -8px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--blue-800);
  border-radius: 50%;
  font-size: 1rem;
}

.step > svg {
  margin-bottom: 24px;
  color: var(--blue-900);
  font-size: 4.4rem;
}

.step > .step-icon,
.step > .step-whatsapp {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  object-fit: contain;
}

.step > .step-whatsapp {
  filter: brightness(0) saturate(100%) invert(17%) sepia(74%) saturate(1724%) hue-rotate(201deg) brightness(89%) contrast(101%);
}

.step h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: 1rem;
  font-weight: 900;
}

.step p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.about {
  position: relative;
  overflow: hidden;
  padding: 2px 0 54px;
}

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

.about-grid > img {
  width: 100%;
  height: 386px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy > span,
.faq > span,
.blog-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 22px;
  color: var(--blue-950);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 900;
  line-height: 1.1;
}

.about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
}

.about .check-list {
  gap: 14px;
}

.blue-cta {
  padding: 8px 0 54px;
}

.services .blue-cta {
  padding: 34px 0 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 178px;
  overflow: hidden;
  padding: 26px 44px 26px 34px;
  color: #fff;
  background: linear-gradient(110deg, #05a8ff, #053e9a 78%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-card img {
  width: 230px;
  height: 126px;
  object-fit: cover;
  object-position: left center;
  border-radius: 6px;
}

.cta-copy span {
  display: block;
  margin-bottom: 6px;
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.cta-action {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.cta-action small {
  font-size: .76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.testimonials {
  position: relative;
  overflow: hidden;
  padding: 0 0 56px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial {
  min-height: 214px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(9, 55, 111, .05);
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, .16);
}

.avatar-1 { background: linear-gradient(145deg, #d77a8e, #6b2c5a); }
.avatar-2 { background: linear-gradient(145deg, #253b4a, #b16b45); }
.avatar-3 { background: linear-gradient(145deg, #e58d3c, #8a332c); }

.person strong {
  display: block;
  color: var(--blue-950);
  font-size: .92rem;
  font-weight: 900;
}

.person span {
  color: #ffca2d;
  font-size: .92rem;
  letter-spacing: .05em;
}

.person small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
}

.testimonial p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 800;
}

.faq-blog {
  position: relative;
  overflow: hidden;
  padding: 0 0 42px;
}

.faq-blog-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: end;
}

.faq-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: start;
}

.faq-only .faq {
  width: 100%;
}

.faq h2 {
  margin: 0 0 24px;
  color: var(--blue-950);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  text-align: center;
}

details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding: 13px 16px;
  color: var(--blue-950);
  cursor: pointer;
  font-size: .94rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--blue-800);
  font-size: 1.15rem;
  line-height: 1;
}

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

details p {
  margin: 0;
  padding: 0 44px 18px 16px;
  color: var(--muted);
  font-weight: 700;
}

.blog-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 32, 72, .15), rgba(6, 32, 72, .78));
}

.blog-card div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 300px;
  max-width: 430px;
  margin-left: auto;
  padding: 40px;
}

.blog-card span {
  color: rgba(255, 255, 255, .78);
  letter-spacing: .16em;
}

.blog-card h2 {
  margin: 0 0 26px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.05;
}

.regulation-page {
  padding-top: 106px;
  background: #fff;
}

.regulation-hero {
  padding: 54px 0;
  color: #fff;
  background: var(--blue-950);
}

.regulation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 450px);
  gap: 44px;
  align-items: center;
}

.regulation-grid h1 {
  margin: 22px 0 14px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
}

.regulation-grid p {
  margin: 0;
  max-width: 680px;
  font-size: 1.22rem;
  font-weight: 700;
}

.regulation-grid p strong {
  color: var(--blue-600);
  font-size: 1.4em;
}

.regulation-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f1fbff;
  border-radius: 8px;
}

.regulation-content {
  padding: 58px 0 72px;
}

.regulation-content .container {
  max-width: 930px;
}

.regulation-content h2 {
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: 2rem;
}

.regulation-text {
  margin-bottom: 30px;
  color: #41516b;
  font-size: 1.05rem;
  line-height: 1.75;
}

.site-footer {
  color: #d7e8ff;
  background: linear-gradient(180deg, var(--blue-950) 0%, #05214e 100%);
  border-radius: 8px 8px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 34px;
  padding: 46px 0 48px;
}

.footer-main-grid {
  grid-template-columns:
    minmax(190px, 1.1fr)
    minmax(130px, .78fr)
    minmax(190px, 1.08fr)
    minmax(250px, 1.42fr)
    minmax(210px, 1.18fr);
}

.site-footer .brand img {
  width: 178px;
}

.site-footer .brand-footer {
  width: fit-content;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .96);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.footer-grid h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: .9rem;
  font-weight: 900;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
  color: #d7e8ff;
  font-size: .82rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.footer-brand p {
  max-width: 220px;
  margin-top: 14px;
}

.footer-subtitle {
  margin-top: 22px !important;
}

.footer-social-note {
  margin-bottom: 13px !important;
  color: rgba(215, 232, 255, .82) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.footer-social-link {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  margin-bottom: 10px !important;
  padding: 9px 10px;
  color: #fff !important;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(215, 232, 255, .18);
  border-radius: 8px;
}

.footer-social-link i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue-950);
  background: #fff;
  border-radius: 50%;
  font-size: .92rem;
}

.footer-social-link span {
  min-width: 0;
}

.footer-social-link strong {
  display: block;
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1.1;
}

.footer-social-link small {
  display: block;
  margin-top: 3px;
  color: rgba(215, 232, 255, .88);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(215, 232, 255, .45);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(5, 186, 95, .35);
  transition: transform .18s ease, background .18s ease;
}

.whatsapp-float:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@keyframes foam-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -28px, 0);
  }

  100% {
    transform: translate3d(-14px, -54px, 0);
  }
}

@keyframes bubble-pulse {
  from {
    transform: scale(.96);
  }

  to {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble,
  .bubble::before {
    animation: none;
  }
}

@media (max-width: 1060px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px 22px;
    padding: 14px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    margin-left: 0;
  }

  .hero-media::before {
    inset: -1px auto -1px 0;
    width: 45%;
  }

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

  .ideal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px;
  }

  .ideal-copy h2,
  .ideal-copy p {
    max-width: 680px;
  }

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

  .cta-card {
    grid-template-columns: 180px 1fr;
  }

  .cta-action {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
  }

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

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 30px, 620px);
  }

  .bubble {
    top: var(--bubble-mobile-top, var(--bubble-top));
    right: var(--bubble-mobile-right, var(--bubble-desktop-right, var(--bubble-right, auto)));
    left: var(--bubble-mobile-left, var(--bubble-desktop-left, var(--bubble-left, auto)));
    width: var(--bubble-mobile-size, var(--bubble-size, 72px));
    height: var(--bubble-mobile-size, var(--bubble-size, 72px));
    opacity: var(--bubble-mobile-opacity, var(--bubble-opacity, .48));
  }

  .site-header {
    overflow: visible;
  }

  .header-inner {
    position: relative;
    flex-wrap: nowrap;
    min-height: 76px;
    padding: 8px 0;
  }

.brand img {
    width: 269px;
  }

  .btn-header {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    cursor: pointer;
    border: 0;
    background: transparent;
  }

  .menu-button img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    width: 100%;
    gap: 4px;
    padding: 10px;
    color: var(--blue-950);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(7, 39, 92, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    overflow: visible;
  }

  .nav-toggle:checked ~ .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 6px;
  }

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

  .nav a.active,
  .nav a:hover {
    color: var(--blue-800);
    background: var(--blue-100);
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy {
    max-width: none;
    margin: 0;
    padding: 22px 20px 26px;
    background: rgba(255, 255, 255, .96);
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9.5vw, 3.2rem);
  }

  .hero-media {
    display: none;
  }

  .strip-grid,
  .cards-grid,
  .steps-grid,
  .about-grid,
  .testimonial-grid,
  .faq-blog-grid {
    grid-template-columns: 1fr;
  }

  .ideal {
    padding: 38px 0 48px;
  }

  .ideal-grid {
    padding: 26px 18px;
  }

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

  .ideal-copy h2 {
    font-size: clamp(1.85rem, 7vw, 2.45rem);
  }

  .ideal-list {
    grid-template-columns: 1fr;
  }

  .ideal-list li {
    min-height: 0;
  }

  .services {
    padding: 58px 0 58px;
  }

  .strip-grid {
    gap: 18px;
  }

  .strip-grid article {
    min-height: 0;
  }

  .promo-arrow {
    width: 40px;
    height: 40px;
  }

  .promo-arrow.prev {
    left: 12px;
  }

  .promo-arrow.next {
    right: 12px;
  }

  .promo-actions {
    padding: 14px 24px;
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 24px 32px;
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step b {
    left: 18px;
    top: 18px;
  }

  .about-grid > img {
    height: 300px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .cta-card img {
    width: 100%;
    height: 170px;
  }

  .cta-action {
    display: grid;
    justify-items: start;
  }

  .blog-card::after {
    background: linear-gradient(0deg, rgba(6, 32, 72, .82), rgba(6, 32, 72, .18));
  }

  .blog-card div {
    justify-items: start;
    align-content: end;
    max-width: none;
    margin: 0;
    padding: 28px;
  }

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

  .footer-grid p {
    overflow-wrap: anywhere;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .header-inner {
    min-height: 80px;
  }

.brand img {
    width: 256px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    font-size: .76rem;
  }

  .btn-header {
    width: auto;
    flex: 1 1 180px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
  }

  .promo-image {
    min-height: 0;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: var(--blue-950);
  }

  .promo-carousel {
    display: grid;
    grid-template-columns: 1fr 30px auto 30px 1fr;
    align-items: center;
    gap: 0 8px;
  }

  .promo-track {
    grid-column: 1 / -1;
    grid-row: 1;
    min-width: 0;
  }

  .promo-arrow {
    position: static;
    grid-row: 2;
    width: 30px;
    height: 30px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: none;
    transform: none;
  }

  .promo-arrow:hover {
    background: rgba(255, 255, 255, .16);
    transform: none;
  }

  .promo-arrow svg {
    width: 16px;
    height: 16px;
  }

  .promo-arrow.prev {
    grid-column: 2;
    justify-self: end;
  }

  .promo-arrow.next {
    grid-column: 4;
    justify-self: start;
  }

  .promo-carousel.single-slide .promo-arrow {
    display: none;
  }

  .promo-dots {
    grid-column: 3;
    grid-row: 2;
    align-items: center;
    min-height: 34px;
    padding: 8px 2px 10px;
    background: transparent;
  }

  .promo-dot {
    width: 8px;
    height: 8px;
  }

  .promo-dot[aria-pressed="true"] {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .22);
  }

  .promo-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
    padding: 14px 16px;
  }

  .promo-actions small {
    width: 100%;
    text-align: center;
  }

  .promo-actions small a {
    width: 100%;
  }

  .service-card {
    min-height: 0;
  }

  .card-body p {
    min-height: 0;
  }

  .testimonial {
    min-height: 0;
  }

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