:root {
  --blue-dark: #0c225a;
  --blue: #164796;
  --blue-bright: #1d6cff;
  --green: #84c61d;
  --green-bright: #b9e539;
  --red: #d7332f;
  --white: #ffffff;
  --text: #eef3ff;
  --muted: #bfd0ef;
  --panel: rgba(8, 20, 50, 0.72);
  --panel-strong: rgba(10, 23, 58, 0.88);
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 50px rgba(0,0,0,.28);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #16367b 0%, #0b1540 40%, #060d22 100%);
  overflow-x: hidden;
}
.page-bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(215,51,47,.18), transparent 30%),
    linear-gradient(225deg, rgba(132,198,29,.16), transparent 25%),
    linear-gradient(310deg, rgba(29,108,255,.18), transparent 35%);
  pointer-events: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  backdrop-filter: blur(14px);
  background: rgba(6,13,34,.75);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-size: .95rem;
}
.nav a:hover, .nav a:focus-visible { color: var(--white); }
.lang-toggle {
  border: 0;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #10224b;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 38px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 0;
  background: linear-gradient(90deg, rgba(6,13,34,.84) 0%, rgba(6,13,34,.46) 45%, rgba(6,13,34,.12) 100%), url('assets/1.avif') center/cover no-repeat;
  border-radius: 34px;
  border: 1px solid var(--border);
  z-index: -1;
  box-shadow: var(--shadow);
}
.hero-copy { padding: 26px 20px 26px 28px; }
.eyebrow {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(132,198,29,.14);
  border: 1px solid rgba(185,229,57,.32);
  color: #ddf7a0;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: .98;
  margin: 0 0 18px;
  text-wrap: balance;
}
.lead, .section-text, .card p, .mini-card p, .cta-box p, .contact-card p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 20px;
}
.cta-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  color: #10224b;
  box-shadow: 0 14px 34px rgba(132,198,29,.24);
}
.btn-secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
}
.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-points span {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .95rem;
  color: var(--text);
}
.hero-visual {
  position: relative;
  padding: 36px 14px 0;
}
.poster-card {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.poster-card img { width: 100%; height: auto; }
.mini-card {
  position: absolute;
  left: -8px;
  bottom: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 330px;
  padding: 16px;
  border-radius: 22px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mini-card img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}
.section-heading {
  text-align: center;
  margin-bottom: 26px;
}
.section-heading.left, .section-text.left { text-align: left; }
.section-heading span {
  color: var(--green-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .88rem;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 10px 0 0;
  line-height: 1.1;
}
.intro {
  text-align: center;
  max-width: 920px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card, .contact-card, .cta-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card {
  padding: 28px;
  min-height: 210px;
}
.card h3 { margin: 0 0 12px; font-size: 1.28rem; }
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.split-section.reverse { grid-template-columns: 1fr 1fr; }
.split-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.split-content {
  padding: 18px 8px;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.check-list li {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 14px 16px 14px 46px;
  position: relative;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #10224b;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  font-weight: 900;
}
.cta-section { padding-top: 36px; }
.cta-box {
  padding: 42px 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(215,51,47,.18), rgba(29,108,255,.18)), var(--panel-strong);
}
.cta-box span {
  display: inline-block;
  color: #ffe08d;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-card {
  padding: 34px 28px;
  text-align: center;
}
.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.contact-actions a {
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #78ef95);
  box-shadow: 0 18px 34px rgba(37,211,102,.35);
  z-index: 30;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.footer {
  padding: 0 16px 30px;
  text-align: center;
  color: var(--muted);
}
.footer a { color: var(--white); }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.floating { animation: floaty 5.5s ease-in-out infinite; }
@keyframes floaty {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 980px) {
  .hero, .split-section, .split-section.reverse, .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero {
    min-height: auto;
    padding-top: 18px;
  }
  .hero::before { inset: 0; }
  .mini-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 18px auto 0;
  }
}
@media (max-width: 760px) {
  .topbar {
    padding: 12px 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .brand { justify-content: center; text-align: center; }
  .nav { justify-content: center; }
  .section { width: min(100% - 22px, 1180px); padding: 58px 0; }
  .hero, .split-section, .split-section.reverse, .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { padding: 28px 14px 0 18px; }
  h1 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .poster-card { max-width: 100%; }
  .mini-card { max-width: 100%; }
  .split-image img { min-height: 250px; }
  .cta-box, .contact-card, .card { padding: 24px 20px; }
}
