:root {
  --brand-blue: #14356f;
  --brand-blue-dark: #0a2149;
  --brand-blue-soft: #e9eef8;
  --gold: #f2c230;
  --gold-deep: #dba900;
  --gold-soft: #ffe28a;
  --ink: #111827;
  --muted: #5b6678;
  --line: #d8deeb;
  --surface: #f5f7fb;
  --surface-warm: #fff8df;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(10, 33, 73, 0.14);
  --shadow-soft: 0 10px 30px rgba(10, 33, 73, 0.08);
  --texture-line: repeating-linear-gradient(135deg, rgba(20, 53, 111, 0.035) 0 1px, transparent 1px 14px);
  --texture-dot: radial-gradient(circle at 1px 1px, rgba(10, 33, 73, 0.08) 1px, transparent 0);
  --texture-blue: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 16px);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(242, 194, 48, 0.82);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 222, 235, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 194, 48, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

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

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a,
.social-link,
.site-footer a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.social-link:hover,
.site-footer a:hover {
  color: var(--brand-blue);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  min-width: max-content;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--brand-blue-soft);
  white-space: nowrap;
}

.social-link[href*="instagram"],
.site-footer nav a[href*="instagram"] {
  color: var(--white);
  background: linear-gradient(135deg, #405de6, #833ab4 45%, #c13584);
}

.social-link[href*="facebook"],
.site-footer nav a[href*="facebook"] {
  color: var(--white);
  background: #0b5ed7;
}

.site-footer nav a[href*="wa.me"] {
  color: var(--white);
  background: #075e54;
}

.social-link[href*="instagram"]:hover,
.site-footer nav a[href*="instagram"]:hover,
.social-link[href*="facebook"]:hover,
.site-footer nav a[href*="facebook"]:hover,
.site-footer nav a[href*="wa.me"]:hover {
  color: var(--white);
  filter: brightness(0.94);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(242, 194, 48, 0.3);
}

.btn-primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 16px 34px rgba(242, 194, 48, 0.36);
}

.btn-secondary {
  color: var(--brand-blue);
  background: var(--white);
  border-color: rgba(20, 53, 111, 0.28);
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: transparent;
  font-size: 0;
  appearance: none;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

main {
  padding-top: 78px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 8vw, 112px) clamp(18px, 6vw, 82px) clamp(34px, 5vw, 72px);
  background:
    var(--texture-line),
    linear-gradient(135deg, rgba(20, 53, 111, 0.08), rgba(242, 194, 48, 0.12)),
    var(--surface);
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(2.35rem, 4.6vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-copy,
.section-heading p,
.split-section p,
.final-cta p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 360px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(20, 53, 111, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-brand-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(20, 53, 111, 0.14);
  border-left: 8px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
}

.hero-brand-card span {
  color: var(--brand-blue-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-service-list span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 53, 111, 0.12);
  border-radius: var(--radius);
  color: var(--brand-blue-dark);
  background: var(--surface);
  font-weight: 850;
}

.hero-service-list span::before {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  flex: 0 0 auto;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 6vw, 82px);
}

.section:nth-of-type(odd) {
  background:
    var(--texture-line),
    linear-gradient(180deg, var(--white), var(--surface));
}

.section:nth-of-type(even) {
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 194, 48, 0.13), transparent 28%),
    var(--texture-dot),
    var(--surface);
  background-size: auto, 18px 18px, auto;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background:
    var(--texture-line),
    var(--line);
}

.intro-strip div {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 251, 0.94)),
    var(--white);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip span {
  color: var(--muted);
}

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

.benefit-card,
.difference-grid article,
.testimonial-grid article,
.steps article,
.offer-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.testimonial-grid article {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 230px;
  border-top: 5px solid var(--gold);
}

.testimonial-grid article::before {
  color: rgba(20, 53, 111, 0.16);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 0.7;
  content: "“";
}

.testimonial-grid p {
  color: var(--muted);
}

.testimonial-grid strong {
  color: var(--brand-blue-dark);
}

.steps article {
  position: relative;
  overflow: hidden;
}

.steps article::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--brand-blue));
  content: "";
}

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

.section-action .btn {
  min-width: min(100%, 300px);
}

.benefit-card span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--brand-blue);
  background: rgba(242, 194, 48, 0.48);
  font-weight: 900;
}

.benefit-card p,
.difference-grid p,
.testimonial-grid p,
.steps p,
.offer-panel p,
.faq-list p {
  color: var(--muted);
}

.split-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  content: "";
  top: 0.42em;
  width: 12px;
  height: 7px;
  border-bottom: 3px solid var(--brand-blue);
  border-left: 3px solid var(--brand-blue);
  transform: rotate(-45deg);
  font-weight: 900;
}

.offer-panel {
  background:
    var(--texture-dot),
    linear-gradient(180deg, var(--surface-warm), var(--white));
  background-size: 18px 18px, auto;
  box-shadow: var(--shadow);
}

.offer-panel .btn {
  width: 100%;
  margin-top: 10px;
}

.section.color-band {
  background:
    var(--texture-blue),
    linear-gradient(135deg, #061936, var(--brand-blue-dark) 58%, #102f65);
}

.color-band h2,
.color-band h3 {
  color: var(--white);
}

.color-band .eyebrow {
  color: var(--gold);
}

.color-band article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.color-band p {
  color: rgba(255, 255, 255, 0.74);
}

.process {
  background:
    var(--texture-line),
    linear-gradient(180deg, var(--surface), var(--white));
}

.service-marquee-section {
  overflow: hidden;
  padding: 18px 0;
  background:
    var(--texture-dot),
    linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
  background-size: 18px 18px, auto;
  border-top: 1px solid rgba(10, 33, 73, 0.12);
  border-bottom: 1px solid rgba(10, 33, 73, 0.12);
}

.service-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.service-marquee-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: 14px;
  animation: marqueeServices 30s linear infinite;
}

.service-marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  color: var(--brand-blue-dark);
  background: transparent;
  font-size: clamp(0.92rem, 2vw, 1rem);
  font-weight: 900;
  white-space: nowrap;
}

.service-marquee-track span::before {
  width: 7px;
  height: 7px;
  margin-right: 18px;
  border-radius: 50%;
  background: var(--brand-blue);
  content: "";
}

.service-marquee:hover .service-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeServices {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee-track {
    animation: none;
    overflow-x: auto;
  }
}

.location-section {
  background:
    var(--texture-dot),
    var(--white);
  background-size: 18px 18px, auto;
}

address {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    var(--texture-line),
    linear-gradient(180deg, var(--surface), var(--white));
  font-style: normal;
}

address span {
  color: var(--muted);
}

address a {
  margin-top: 12px;
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.faq-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(242, 194, 48, 0.16), transparent 24%),
    var(--texture-line),
    var(--surface);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 850;
}

summary:hover {
  color: var(--brand-blue);
}

details p {
  padding: 0 22px 20px;
}

.final-cta {
  padding: clamp(60px, 8vw, 120px) clamp(18px, 6vw, 82px);
  color: var(--white);
  text-align: center;
  background:
    var(--texture-blue),
    linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta .btn {
  margin-top: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(18px, 6vw, 82px);
  border-top: 1px solid var(--line);
  background:
    var(--texture-line),
    linear-gradient(180deg, var(--white), var(--surface));
}

.footer-brand img {
  width: 44px;
  height: 44px;
}

.site-footer p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  justify-content: flex-end;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: var(--radius);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: #075e54;
  box-shadow: var(--shadow);
  font-weight: 900;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #0f766b;
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .main-nav {
    padding-top: 18px;
  }

  .site-header.is-open .header-actions {
    padding-bottom: 8px;
  }

  .site-header.is-open .social-link {
    justify-content: center;
    width: 100%;
    padding: 0 14px;
  }

  .site-header.is-open .btn {
    width: 100%;
  }

  .hero,
  .split-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .intro-strip,
  .benefit-grid,
  .difference-grid,
  .testimonial-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .site-header {
    min-height: 68px;
    padding: 8px 14px;
  }

  main {
    padding-top: 68px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .section,
  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-brand-card,
  .hero-service-list {
    grid-template-columns: 1fr;
  }

  .hero-brand-card {
    align-items: flex-start;
  }
}
