@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy: #071b33;
  --blue: #0a66d8;
  --blue2: #0f8cff;
  --gold: #f7b731;
  --paper: #f6f8fc;
  --white: #ffffff;
  --text: #102033;
  --muted: #68768a;
  --border: #e3eaf4;
  --whatsapp: #25d366;
  --facebook: #1877f2;
  --shadow: 0 24px 70px rgba(7, 27, 51, .16);
  --soft-shadow: 0 14px 40px rgba(7, 27, 51, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
}

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

.top-bar {
  background: #041426;
  color: rgba(255,255,255,.86);
  min-height: 42px;
  padding: 10px 28px;
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.hero {
  color: white;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 85% 25%, rgba(247,183,49,.35), transparent 24%),
    radial-gradient(circle at 20% 30%, rgba(15,140,255,.55), transparent 26%),
    linear-gradient(135deg, #071b33 0%, #0b3770 48%, #0a66d8 100%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.nav {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), #fff1b7);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(247,183,49,.25);
}

.brand strong { display: block; font-size: 24px; line-height: 1; letter-spacing: .5px; }
.brand small { display: block; margin-top: 5px; color: rgba(255,255,255,.74); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a { color: rgba(255,255,255,.86); }
.nav-links a:hover { color: white; }

.nav-cta, .language-btn {
  background: white;
  color: var(--navy) !important;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,.14);
}

.language-btn {
  background: rgba(255,255,255,.14);
  color: white !important;
  border: 1px solid rgba(255,255,255,.24);
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: auto;
  padding: 84px 22px 140px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 54px;
  align-items: center;
}

.badge, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(247,183,49,.16);
  color: var(--gold);
  border: 1px solid rgba(247,183,49,.35);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  margin: 24px 0;
  letter-spacing: -2.3px;
}

.hero-content p {
  max-width: 700px;
  color: rgba(255,255,255,.80);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions, .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  justify-content: flex-start;
}

.cta-actions { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 23px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffd86b);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(247,183,49,.28);
}

.btn-light {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #13b955);
  color: white;
  box-shadow: 0 14px 30px rgba(37,211,102,.28);
}

.btn-facebook {
  background: linear-gradient(135deg, #1877f2, #0f5dc8);
  color: white;
  box-shadow: 0 14px 30px rgba(24,119,242,.24);
}

.trust-row {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.trust-row div {
  min-width: 130px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 20px;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
}

.trust-row strong { display: block; font-size: 25px; color: white; }
.trust-row span { display: block; color: rgba(255,255,255,.72); font-size: 13px; margin-top: 3px; }

.hero-panel { position: relative; min-height: 480px; }

.glass-card {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.main-card { padding: 34px; position: absolute; inset: 42px 0 auto 36px; }

.card-header {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.card-header strong { display: block; font-size: 20px; }
.card-header small { display: block; color: rgba(255,255,255,.66); margin-top: 4px; }

.circle-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.check-list { padding: 0; margin: 24px 0 0; list-style: none; }

.check-list li {
  margin: 15px 0;
  padding-left: 30px;
  position: relative;
  color: rgba(255,255,255,.84);
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.floating-card {
  position: absolute;
  background: white;
  color: var(--navy);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.floating-card span, .floating-card small { display: block; color: var(--muted); font-size: 12px; font-weight: 700; }
.floating-card strong { display: block; font-size: 28px; line-height: 1.1; }
.fc-1 { left: 0; bottom: 36px; }
.fc-2 { right: 10px; top: 0; max-width: 190px; }

.section { max-width: 1180px; margin: auto; padding: 96px 22px; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }

h2 {
  margin: 18px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -1.5px;
}

.split p, .section-center p, .contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.services, .process {
  max-width: none;
  background: white;
  padding-left: max(22px, calc((100vw - 1180px)/2 + 22px));
  padding-right: max(22px, calc((100vw - 1180px)/2 + 22px));
}

.section-center { max-width: 760px; margin: 0 auto 44px; text-align: center; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.service-card {
  background: linear-gradient(180deg, white, #f9fbff);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eef5ff;
  font-size: 25px;
  margin-bottom: 22px;
}

.service-card h3, .price-card h3, .step h3 { font-size: 22px; margin: 0 0 10px; }
.service-card p, .price-card li, .step p { color: var(--muted); line-height: 1.7; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.price-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.price-card:before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  background: rgba(10,102,216,.08);
  border-radius: 50%;
}

.price-card.highlight {
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border: 2px solid rgba(10,102,216,.45);
  transform: translateY(-10px);
}

.price-tag {
  display: inline-block;
  background: #eef5ff;
  color: var(--blue);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.price {
  color: var(--blue);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 12px 0 22px;
}

.price-card ul { margin: 0; padding: 0; list-style: none; }

.price-card li {
  padding: 11px 0 11px 28px;
  position: relative;
  border-top: 1px solid var(--border);
}

.price-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.important-note {
  margin-top: 28px;
  background: #fff8e8;
  border: 1px solid #ffe0a6;
  border-left: 6px solid var(--gold);
  border-radius: 22px;
  padding: 22px 24px;
  color: #6b541d;
  line-height: 1.7;
}

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

.step {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  margin-bottom: 22px;
}

.cta-section {
  padding: 80px 22px;
  background: linear-gradient(135deg, #071b33, #0a66d8);
}

.cta-box {
  max-width: 980px;
  margin: auto;
  text-align: center;
  color: white;
  border-radius: 36px;
  padding: 60px 32px;
  background: radial-gradient(circle at 20% 10%, rgba(247,183,49,.24), transparent 32%), rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.cta-box p {
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin: 18px auto 0;
  line-height: 1.8;
}

.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 44px; align-items: center; }

.contact-card {
  background: white;
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-card a { color: var(--blue); font-weight: 800; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #25d366, #13b955);
  color: white;
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(37,211,102,.38);
  border: 2px solid rgba(255,255,255,.65);
  animation: pulse 2.2s infinite;
}

.whatsapp-float span { font-size: 20px; }

@keyframes pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 18px 45px rgba(37,211,102,.38); }
  50% { transform: translateY(-3px); box-shadow: 0 24px 55px rgba(37,211,102,.48); }
}

.footer {
  max-width: 1180px;
  margin: auto;
  padding: 36px 22px 92px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer strong { color: var(--text); }

.footer-links { display: flex; gap: 22px; font-weight: 800; flex-wrap: wrap; }

.legal {
  max-width: 900px;
  margin: 46px auto;
  background: white;
  border-radius: 32px;
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.legal h1 { color: var(--text); font-size: 44px; letter-spacing: -1px; }
.legal a { color: var(--blue); font-weight: 800; }

@media (max-width: 980px) {
  .top-bar { flex-direction: column; gap: 6px; text-align: center; }
  .nav-links { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 420px; }
  .main-card { inset: 20px 0 auto 0; }
  .fc-2 { right: 0; }
  .service-grid, .price-grid, .timeline { grid-template-columns: 1fr; }
  .price-card.highlight { transform: none; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero-grid { padding-top: 50px; padding-bottom: 90px; }
  .hero-panel { min-height: 500px; }
  .floating-card { position: relative; margin: 14px 0; left: auto; right: auto; bottom: auto; top: auto; }
  .main-card { position: relative; }
  .trust-row div { width: 100%; }
  .section { padding: 70px 18px; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }
}
