:root {
  --navy-950: #07182e;
  --navy-900: #0b2341;
  --navy-800: #12365e;
  --navy-700: #184b7a;
  --red-600: #e21e2b;
  --red-700: #bd1420;
  --green-600: #159447;
  --cream: #f8f6f1;
  --sand: #eae4d9;
  --white: #ffffff;
  --ink: #152033;
  --muted: #637083;
  --line: #dde3ea;
  --shadow-sm: 0 10px 30px rgba(11, 35, 65, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 35, 65, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1240px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f6aab0;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--red-600);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.svg-sprite {
  position: absolute;
  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(11, 35, 65, 0.08);
  backdrop-filter: blur(18px);
}

.topbar {
  display: none;
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-950);
  font-size: 0.78rem;
}

.topbar-inner,
.topbar-links,
.topbar-links a {
  display: flex;
  align-items: center;
}

.topbar-inner {
  min-height: 36px;
  justify-content: space-between;
  gap: 1rem;
}

.topbar p {
  margin: 0;
}

.topbar-links {
  gap: 1.25rem;
}

.topbar-links a {
  gap: 0.4rem;
  transition: color 160ms ease;
}

.topbar-links a:hover {
  color: var(--white);
}

.topbar-links svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.topbar-whatsapp {
  color: #8be5aa;
}

.nav-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: clamp(172px, 18vw, 235px);
}

.brand img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  z-index: -1;
  top: 76px;
  right: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  height: calc(100dvh - 76px);
  padding: 1rem 1rem 5rem;
  flex-direction: column;
  background: var(--white);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  overflow-y: auto;
}

.nav-panel.is-open {
  z-index: 10;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-panel nav {
  display: flex;
  flex-direction: column;
}

.nav-panel nav a {
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  font-size: 1.05rem;
  font-weight: 700;
}

.language-switcher {
  display: flex;
  margin-top: 1.5rem;
  padding: 4px;
  align-self: flex-start;
  background: #eef2f6;
  border-radius: 999px;
}

.language-switcher button {
  min-width: 42px;
  padding: 0.48rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 3px 10px rgba(11, 35, 65, 0.2);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(820px, calc(100vh - 118px));
  isolation: isolate;
  padding: clamp(3rem, 8vw, 7.5rem) 0 clamp(4rem, 9vw, 8rem);
  align-items: center;
  background: #eef1f4;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: 2;
  width: 300px;
  height: 300px;
  right: -190px;
  bottom: 10px;
  border: 46px solid rgba(11, 35, 65, 0.035);
  border-radius: 50%;
  content: "";
}

.hero-backgrounds,
.hero-bg-slide,
.hero-bg-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-backgrounds {
  z-index: 0;
  background: #eef1f4;
}

.hero-bg-slide {
  display: block;
  opacity: 0;
  animation: hero-slide-cycle 7.5s linear infinite both;
  will-change: opacity;
}

.hero-bg-slide:nth-child(1) { animation-delay: -550ms; }
.hero-bg-slide:nth-child(2) { animation-delay: 950ms; }
.hero-bg-slide:nth-child(3) { animation-delay: 2450ms; }
.hero-bg-slide:nth-child(4) { animation-delay: 3950ms; }
.hero-bg-slide:nth-child(5) { animation-delay: 5450ms; }

@keyframes hero-slide-cycle {
  0% { opacity: 0; }
  7.333%, 20% { opacity: 1; }
  27.333%, 100% { opacity: 0; }
}

.hero-bg-slide img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.56) 59%, rgba(11, 35, 65, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.hero-compact-title {
  display: none;
}

.hero-slide-dots {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  display: flex;
  padding: 0.55rem 0.42rem;
  flex-direction: column;
  gap: 0.38rem;
  background: rgba(11, 35, 65, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(11, 35, 65, 0.15);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.hero-slide-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  animation: hero-dot-cycle 7.5s linear infinite both;
}

.hero-slide-dots span:nth-child(1) { animation-delay: -550ms; }
.hero-slide-dots span:nth-child(2) { animation-delay: 950ms; }
.hero-slide-dots span:nth-child(3) { animation-delay: 2450ms; }
.hero-slide-dots span:nth-child(4) { animation-delay: 3950ms; }
.hero-slide-dots span:nth-child(5) { animation-delay: 5450ms; }

@keyframes hero-dot-cycle {
  0%, 7.332% { height: 6px; background: rgba(255, 255, 255, 0.48); }
  7.333%, 20% { height: 19px; background: var(--red-600); }
  27.333%, 100% { height: 6px; background: rgba(255, 255, 255, 0.48); }
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  gap: 2.75rem;
}

.hero-copy-meta {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--red-600);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow > span:first-child {
  width: 34px;
  height: 3px;
  background: var(--red-600);
  border-radius: 999px;
}

.hero-details h1,
.section-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  color: var(--navy-900);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-details h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 5.2rem);
}

.hero-lead {
  max-width: 680px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  margin-top: 1.8rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.78rem 1.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 14px 30px rgba(226, 30, 43, 0.25);
}

.button-primary:hover {
  background: var(--red-700);
  box-shadow: 0 18px 34px rgba(226, 30, 43, 0.3);
}

.button-secondary {
  border-color: var(--line);
  color: var(--navy-900);
  background: var(--white);
}

.button-secondary:hover {
  border-color: #c7d0da;
  box-shadow: var(--shadow-sm);
}

.hero-points {
  display: grid;
  margin: 1.75rem 0 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #3e4b5d;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-points svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  color: var(--red-600);
  background: rgba(226, 30, 43, 0.1);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 64vw, 370px);
}

.hero-stat {
  display: flex;
  min-width: 118px;
  padding: 0.55rem 0.7rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  background: rgba(11, 35, 65, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  white-space: normal;
}

.hero-stat strong {
  font-size: 1.3rem;
  line-height: 1;
}

.hero-stat span {
  max-width: 58px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
}

.hero-details {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}

.hero-details .hero-copy {
  max-width: 850px;
  margin-inline: auto;
}

.hero-details .hero-copy-meta {
  justify-content: flex-start;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.surface {
  background: var(--cream);
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact {
  max-width: 640px;
}

.section-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.55rem);
}

.section-heading > p:last-child,
.split-heading > p,
.faq-intro > p,
.about-copy > p {
  color: var(--muted);
}

.section-heading.centered > p:last-child {
  max-width: 680px;
  margin: 1rem auto 0;
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 1rem 3rem;
}

.split-heading > p {
  max-width: 580px;
  margin: 0;
}

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

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 0.55rem;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e5e9ee;
  border-radius: 15px;
  box-shadow: 0 7px 24px rgba(11, 35, 65, 0.05);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  top: -35px;
  right: -28px;
  background: var(--red-600);
  border-radius: 50%;
  content: "";
  transition: transform 180ms ease;
}

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

.service-card:hover::after {
  transform: scale(1.2);
}

.service-media {
  position: relative;
  margin: -0.55rem -0.55rem 0.6rem;
  aspect-ratio: 16 / 9;
  background: #eee9e0;
  border-radius: 14px 14px 9px 9px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.035);
}

.service-icon {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--red-600);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 9px;
  box-shadow: 0 5px 12px rgba(11, 35, 65, 0.14);
  place-items: center;
  font-size: 0.8rem;
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--red-600);
  background: rgba(226, 30, 43, 0.09);
  border-radius: 14px;
  place-items: center;
  font-size: 1.35rem;
}

.service-card h3 {
  display: -webkit-box;
  min-height: 2.55em;
  margin: 0.05rem 0 0;
  color: var(--navy-900);
  font-size: clamp(0.72rem, 3.25vw, 0.86rem);
  line-height: 1.28;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.service-card p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 0.35rem;
  color: var(--red-600);
  font-size: 0.83rem;
  font-weight: 850;
}

.service-card a span:last-child {
  font-size: 1rem;
  transition: transform 160ms ease;
}

.service-card a:hover span:last-child {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .site-header {
    position: absolute;
    width: 100%;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-inner {
    min-height: 88px;
  }

  .brand {
    width: 176px;
    padding: 0.15rem 0.55rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(11, 35, 65, 0.16);
    backdrop-filter: blur(13px);
  }

  .brand img {
    border-radius: 12px;
  }

  .menu-toggle {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 35px rgba(11, 35, 65, 0.16);
    backdrop-filter: blur(13px);
  }

  .nav-panel {
    top: 88px;
    height: calc(100dvh - 88px);
  }

  .hero {
    min-height: 100svh;
    padding: 0;
    align-items: stretch;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 35, 65, 0.16) 0%, rgba(11, 35, 65, 0.02) 35%, rgba(11, 35, 65, 0.18) 58%, rgba(11, 35, 65, 0.76) 100%),
      linear-gradient(90deg, rgba(11, 35, 65, 0.05), rgba(11, 35, 65, 0.14));
  }

  .hero-compact-title {
    position: absolute;
    z-index: 5;
    right: 1rem;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 1rem;
    display: block;
    margin: 0;
    padding: 0.72rem 0.9rem;
    color: var(--white);
    background: rgba(11, 35, 65, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 15px;
    box-shadow: 0 14px 38px rgba(11, 35, 65, 0.24);
    font-size: clamp(0.93rem, 4vw, 1.1rem);
    font-weight: 900;
    letter-spacing: -0.015em;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 2px 12px rgba(11, 35, 65, 0.45);
    backdrop-filter: blur(9px);
  }

  .hero-details {
    padding: 2.8rem 0 5.25rem;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-copy-meta {
    margin-bottom: 0.7rem;
    gap: 0.6rem;
  }

  .eyebrow {
    font-size: clamp(0.58rem, 2.2vw, 0.7rem);
    letter-spacing: 0.11em;
  }

  .eyebrow > span:first-child {
    width: 22px;
  }

  .hero-details h1 {
    font-size: clamp(2rem, 8vw, 2.65rem);
    line-height: 1.03;
  }

  .hero-lead {
    margin-top: 0.8rem;
    font-size: clamp(0.82rem, 3vw, 0.96rem);
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 0.9rem;
    gap: 0.55rem;
  }

  .hero-actions .button {
    min-height: 47px;
    padding: 0.68rem 0.85rem;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .hero-points {
    margin-top: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
  }

  .hero-points li {
    min-width: 0;
    padding: 0.38rem 0.45rem;
    gap: 0.35rem;
    background: rgba(11, 35, 65, 0.055);
    border: 1px solid rgba(11, 35, 65, 0.06);
    border-radius: 10px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-points li:last-child {
    grid-column: 1 / -1;
  }

  .hero-points svg {
    width: 17px;
    height: 17px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stat {
    min-width: 108px;
    padding: 0.42rem 0.55rem;
    flex: 0 0 auto;
    border-width: 2px;
    border-radius: 12px;
  }

  .hero-stat strong {
    font-size: 1.12rem;
  }

  .hero-stat span {
    max-width: 50px;
    font-size: 0.6rem;
    line-height: 1.05;
  }

  .hero-slide-dots {
    right: 0.7rem;
    top: 42%;
  }

  .services {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .services .section-heading {
    margin-bottom: 1.5rem;
  }

  .services .section-heading > p:last-child {
    font-size: 0.88rem;
  }

  .service-card p {
    display: none;
  }

  .service-card > a {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: block;
    margin: 0;
    color: transparent;
    font-size: 0;
  }

  .service-card > a span {
    display: none;
  }
}

.cta-banner {
  position: relative;
  display: grid;
  margin-top: 2rem;
  padding: 1.5rem;
  align-items: center;
  gap: 1.2rem;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cta-banner::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  top: -150px;
  border: 35px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.cta-icon {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--red-600);
  border-radius: 16px;
  place-items: center;
}

.cta-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cta-banner h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.button-light {
  position: relative;
  z-index: 1;
  color: var(--navy-900);
  background: var(--white);
}

.guide-grid {
  display: grid;
  gap: 0.8rem;
}

.guide-card {
  padding: 1.3rem;
  background: var(--white);
  border: 1px solid #e8e4dc;
  border-radius: var(--radius-sm);
}

.guide-number {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--red-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.guide-card h3 {
  margin: 0 0 0.55rem;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.35;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.benefits-grid {
  display: grid;
  gap: 0.75rem;
}

.benefit-card {
  display: flex;
  min-height: 92px;
  padding: 1rem;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--navy-900);
  background: #eef3f8;
  font-size: 1.05rem;
}

.benefit-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.92rem;
  line-height: 1.35;
}

.brands-grid {
  display: grid;
  gap: 1rem;
}

.brand-card {
  --brand-color: var(--red-600);
  position: relative;
  display: flex;
  min-height: 280px;
  padding: 1.5rem;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e7e3da;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(11, 35, 65, 0.05);
  overflow: hidden;
}

.brand-card::before {
  display: block;
  width: 74px;
  height: 7px;
  margin-bottom: 1.5rem;
  background: var(--brand-color);
  border-radius: 999px 65% 50% 999px;
  content: "";
}

.brand-card::after {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -80px;
  bottom: -95px;
  border: 22px solid color-mix(in srgb, var(--brand-color) 11%, transparent);
  border-radius: 50%;
  content: "";
}

.brand-card h3 {
  margin: 0 0 0.7rem;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.brand-card p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 850;
}

.brand-card a::after {
  content: "↗";
  color: var(--brand-color);
  font-size: 1rem;
}

.brand-card a:hover {
  color: var(--red-600);
}

.brand-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.process-item {
  position: relative;
  display: grid;
  padding: 0 0 2rem 3.8rem;
}

.process-item:not(:last-child)::before {
  position: absolute;
  width: 2px;
  top: 42px;
  bottom: 0;
  left: 21px;
  background: #dce3ea;
  content: "";
}

.process-number {
  position: absolute;
  left: 0;
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--navy-900);
  border: 5px solid #edf1f5;
  border-radius: 50%;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.process-item h3 {
  margin: 0.45rem 0 0.35rem;
  color: var(--navy-900);
  font-size: 1rem;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-placeholder {
  display: grid;
  min-height: 230px;
  padding: 1.2rem;
  color: #8792a0;
  background:
    linear-gradient(135deg, rgba(11, 35, 65, 0.025), rgba(226, 30, 43, 0.035)),
    repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(11, 35, 65, 0.025) 14px, rgba(11, 35, 65, 0.025) 15px);
  border: 1px dashed #bcc5cf;
  border-radius: var(--radius-md);
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  text-align: center;
}

.gallery-placeholder svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.gallery-placeholder span {
  font-size: 0.86rem;
  font-weight: 700;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.about-visual {
  position: relative;
  min-height: 360px;
  background: #f3f5f7;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-visual::before {
  position: absolute;
  width: 62%;
  height: 68%;
  left: 12%;
  bottom: -5%;
  background: var(--white);
  border-radius: 50% 50% 8% 8%;
  box-shadow: var(--shadow-sm);
  content: "";
}

.sample {
  position: absolute;
  z-index: 2;
  width: 84px;
  height: 118px;
  bottom: 18%;
  border: 7px solid var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.sample-red {
  left: 17%;
  background: var(--red-600);
  transform: rotate(-9deg);
}

.sample-navy {
  left: 38%;
  bottom: 12%;
  background: var(--navy-900);
  transform: rotate(3deg);
}

.sample-sand {
  right: 18%;
  background: #d7c4a8;
  transform: rotate(10deg);
}

.roller-illustration {
  position: absolute;
  z-index: 3;
  width: 142px;
  height: 44px;
  top: 19%;
  left: 18%;
  background: var(--red-600);
  border-radius: 9px;
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.08);
}

.roller-illustration::before {
  position: absolute;
  width: 83px;
  height: 88px;
  top: 16px;
  right: -70px;
  border-top: 7px solid #798392;
  border-right: 7px solid #798392;
  content: "";
}

.roller-illustration::after {
  position: absolute;
  width: 15px;
  height: 100px;
  top: 94px;
  right: -76px;
  background: var(--navy-900);
  border-radius: 999px;
  content: "";
  transform: rotate(18deg);
}

.about-copy > p {
  margin: 1rem 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 1.3rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--red-600);
  font-weight: 850;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.dark-section {
  position: relative;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.dark-section::before {
  position: absolute;
  width: 540px;
  height: 540px;
  top: -360px;
  left: -160px;
  border: 80px solid rgba(226, 30, 43, 0.12);
  border-radius: 50%;
  content: "";
}

.dark-section .section-heading h2 {
  color: var(--white);
}

.dark-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.67);
}

.section-kicker.light {
  color: #ff727b;
}

.district-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  list-style: none;
}

.district-grid li {
  position: relative;
  padding: 0.72rem 0.7rem 0.72rem 1.7rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 650;
}

.district-grid li::before {
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0.75rem;
  background: var(--red-600);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.faq-layout {
  display: grid;
  gap: 2.5rem;
}

.faq-intro {
  align-self: start;
}

.faq-intro > p {
  margin: 1rem 0 0;
}

.faq-help {
  display: flex;
  margin-top: 1.7rem;
  padding: 1rem;
  align-items: center;
  gap: 0.85rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.faq-help > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  flex: 0 0 auto;
  color: var(--red-600);
  background: var(--white);
  border-radius: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.faq-help strong,
.faq-help a {
  display: block;
}

.faq-help strong {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.faq-help a {
  color: var(--red-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item:first-child {
  border-top: 1px solid var(--line);
}

.accordion-trigger {
  display: grid;
  width: 100%;
  padding: 1.15rem 0;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font-size: 0.96rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  position: relative;
  width: 28px;
  height: 28px;
  background: #eef2f6;
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  width: 11px;
  height: 2px;
  top: 13px;
  left: 8.5px;
  background: var(--navy-900);
  content: "";
  transition: transform 180ms ease;
}

.accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: rgba(226, 30, 43, 0.1);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  margin: 0;
  padding: 0 2.5rem 1.2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.accordion-trigger[aria-expanded="true"] + .accordion-panel {
  grid-template-rows: 1fr;
}

.contact {
  padding: 0 0 clamp(4.5rem, 9vw, 8rem);
}

.contact-card {
  position: relative;
  display: grid;
  padding: clamp(1.5rem, 5vw, 4rem);
  gap: 2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(226, 30, 43, 0.28), transparent 22rem),
    var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:last-of-type {
  max-width: 650px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.button-whatsapp {
  color: var(--white);
  background: var(--green-600);
}

.contact-details {
  display: flex;
  min-width: 0;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--navy-900);
  font-style: normal;
}

.contact-details img {
  width: 180px;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.contact-details strong {
  font-size: 1.05rem;
}

.contact-details a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.contact-details a:hover {
  color: var(--red-600);
}

.contact-details svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer {
  padding: 3.5rem 0 5.8rem;
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.brand-footer {
  width: 215px;
  padding: 0.35rem;
  background: var(--white);
  border-radius: 10px;
}

.footer-brand p {
  max-width: 290px;
  margin: 1rem 0 0;
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.86rem;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-bottom svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mobile-contact-bar {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 66px;
  padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  grid-template-columns: 1fr 1.35fr;
  gap: 7px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -8px 28px rgba(11, 35, 65, 0.12);
  backdrop-filter: blur(12px);
}

.mobile-contact-bar a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 11px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.mobile-contact-bar .mobile-whatsapp {
  background: var(--green-600);
}

.mobile-contact-bar svg,
.desktop-contact-buttons svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.desktop-contact-buttons {
  display: none;
}

@media (min-width: 560px) {
  .hero-actions .button {
    min-width: 180px;
  }

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 1.4rem;
  }

  .services-grid,
  .guide-grid,
  .benefits-grid,
  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-banner {
    grid-template-columns: auto 1fr;
    padding: 1.7rem;
  }

  .cta-banner .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .service-media {
    margin: -1rem -1rem 0.95rem;
    border-radius: 21px 21px 11px 11px;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    left: 0.65rem;
    bottom: 0.65rem;
    border-radius: 11px;
    font-size: 1.05rem;
  }

  .service-card h3 {
    display: block;
    min-height: 0;
    margin: 0 0 0.5rem;
    font-size: 1rem;
    overflow: visible;
  }

  .service-card p {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.88rem;
  }

  .topbar {
    display: block;
  }

  .nav-panel {
    top: 112px;
    height: calc(100dvh - 112px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  }

  .hero-details h1 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
  }

  .hero-visual {
    min-height: clamp(430px, 55vw, 560px);
  }

  .split-heading {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  }

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

  .gallery-grid {
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: 1fr 1fr;
  }

  .gallery-placeholder-large {
    min-height: 490px;
    grid-row: 1 / 3;
  }

  .about-grid {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  }

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

  .faq-layout {
    grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
    gap: 4rem;
  }

  .faq-intro {
    position: sticky;
    top: 150px;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  }

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

@media (min-width: 960px) {
  .services-grid,
  .brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .cta-banner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 1.8rem 2rem;
  }

  .cta-banner .button {
    grid-column: auto;
    justify-self: end;
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }

  .process-item {
    padding: 4.1rem 0 0;
    text-align: center;
  }

  .process-item:not(:last-child)::before {
    width: calc(100% + 1rem);
    height: 2px;
    top: 21px;
    right: -1rem;
    bottom: auto;
    left: 50%;
  }

  .process-number {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

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

@media (min-width: 1180px) {
  .topbar-inner {
    width: min(calc(100% - 3rem), var(--container));
  }

  .nav-inner {
    min-height: 82px;
  }

  .brand {
    width: 202px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    z-index: auto;
    display: flex;
    visibility: visible;
    width: auto;
    height: auto;
    padding: 0;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    background: transparent;
    opacity: 1;
    transform: none;
    overflow: visible;
  }

  .nav-panel nav {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .nav-panel nav a {
    position: relative;
    padding: 0.7rem 0.48rem;
    border: 0;
    font-size: 0.71rem;
    white-space: nowrap;
  }

  .nav-panel nav a::after {
    position: absolute;
    height: 2px;
    right: 0.48rem;
    bottom: 0.35rem;
    left: 0.48rem;
    background: var(--red-600);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
  }

  .nav-panel nav a:hover::after,
  .nav-panel nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .language-switcher {
    margin-top: 0;
    margin-left: 0.3rem;
  }

  .language-switcher button {
    min-width: 34px;
    padding-inline: 0.45rem;
    font-size: 0.69rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
    gap: 4rem;
  }

  .hero-stat {
    left: 0;
  }

  .guide-card {
    padding: 1.6rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-media {
    margin: -1.2rem -1.2rem 1rem;
  }

  .mobile-contact-bar {
    display: none;
  }

  .desktop-contact-buttons {
    position: fixed;
    z-index: 80;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .desktop-contact-buttons a {
    display: grid;
    width: 52px;
    height: 52px;
    color: var(--white);
    background: var(--navy-900);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    place-items: center;
    transition: transform 160ms ease;
  }

  .desktop-contact-buttons a:hover {
    transform: translateY(-3px);
  }

  .desktop-contact-buttons .desktop-whatsapp {
    background: var(--green-600);
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 1500px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-panel nav a {
    padding-inline: 0.68rem;
    font-size: 0.76rem;
  }
}

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

  .nav-inner {
    min-height: 82px;
  }

  .brand {
    width: 158px;
  }

  .nav-panel {
    top: 82px;
    height: calc(100dvh - 82px);
  }

  .hero {
    padding-top: calc(90px + env(safe-area-inset-top));
  }

  .hero-details h1 {
    font-size: clamp(1.88rem, 8.4vw, 2.25rem);
  }

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

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

  .district-grid li {
    padding-left: 1.5rem;
    font-size: 0.76rem;
  }

  .district-grid li::before {
    left: 0.63rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
