:root {
  color-scheme: light;
  --ink: #0b1c53;
  --ink-strong: #06123a;
  --accent: #1f3b9d;
  --accent-soft: #395ac7;
  --soft: #f4f6fb;
  --sand: #f6f1ea;
  --white: #ffffff;
  --line: rgba(11, 28, 83, 0.12);
  --shadow: 0 20px 50px rgba(11, 28, 83, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #e9eefc 0%, transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f7f4f0 100%);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 100;
}

.skip:focus {
  left: 16px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--soft);
}

.section-legal {
  background: var(--sand);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink-strong);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

p {
  font-size: 1.02rem;
  color: rgba(11, 28, 83, 0.85);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand img {
  height: 52px;
}

.nav {
  justify-self: center;
}

.nav-menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-menu a {
  color: rgba(11, 28, 83, 0.8);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(31, 59, 157, 0.15), transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-features-single {
  grid-template-columns: minmax(220px, 360px);
}

.hero-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(11, 28, 83, 0.08);
}

.hero-feature strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink-strong);
}

.hero-feature span {
  font-size: 0.85rem;
  color: rgba(11, 28, 83, 0.7);
}

.hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 59, 157, 0.12);
  color: var(--accent);
  font-size: 2.1rem;
  line-height: 1;
}

.hero-icon-flag img {
  width: 60px;
  height: 60px;
  display: block;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 28, 83, 0.08);
}

.hero-card .mark {
  width: 72px;
  margin-bottom: 18px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(11, 28, 83, 0.08);
}

.card .btn,
.highlight-box .btn,
.legal-card .btn,
.hero-card .btn {
  margin-top: 18px;
}

.about-cta {
  margin-top: 18px;
  display: inline-flex;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.highlight-box {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 59, 157, 0.12);
  color: var(--accent);
  font-size: 1.2rem;
}

.step span {
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
}

.legal-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.legal-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 24px;
  margin-top: 16px;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
}

.legal-list i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
}

.legal-note {
  background: var(--soft);
  padding: 16px;
  border-radius: 16px;
  margin-top: 20px;
}

.carousel {
  display: grid;
  gap: 16px;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.carousel-controls {
  display: contents;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.carousel-viewport {
  overflow: hidden;
}

.testimonials {
  display: flex;
  gap: 24px;
}

.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  flex: 0 0 auto;
}

.testimonial img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial strong {
  font-size: 1.05rem;
}

.testimonial-condition {
  font-size: 0.9rem;
  color: rgba(11, 28, 83, 0.7);
}

.about-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(11, 28, 83, 0.08);
  max-width: 420px;
  justify-self: center;
}

.about-card img {
  border-radius: 18px;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--accent);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link i {
  font-size: 1.05rem;
}

.footer {
  background: var(--ink-strong);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 32px;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer .social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer .social-link i {
  color: var(--white);
  font-size: 1.05rem;
}
.footer img {
  width: 180px;
  margin-bottom: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-top: 8px;
}

.footer .social-link {
  display: flex;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-dev img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
  visibility: visible;
}

.whatsapp-float i {
  font-size: 1.35rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-grid {
    grid-template-columns: auto auto;
    gap: 16px;
  }

  .nav {
    justify-self: end;
  }

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

  .nav-menu {
    position: absolute;
    right: 4vw;
    top: 72px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 220px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .btn {
    display: none;
  }

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

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

}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

}
