:root{
  --navy:#16345f;
  --navy-deep:#0a1930;
  --ink:#0d213f;
  --teal:#158b94;
  --teal-soft:#dff4f2;
  --gold:#d9b65b;
  --gold-soft:#f5ead0;
  --sand:#fbf7ef;
  --mist:#eef6f7;
  --card:#ffffff;
  --border:rgba(22,52,95,.12);
  --border-strong:rgba(22,52,95,.18);
  --text:#18324a;
  --muted:#5d7388;
  --shadow:0 24px 60px rgba(15,37,69,.12);
  --shadow-soft:0 16px 34px rgba(15,37,69,.08);
  --shadow-premium:0 30px 80px rgba(10,25,48,.16);
  --radius-lg:32px;
  --radius-md:24px;
  --radius-sm:18px;
}

*{box-sizing:border-box}

button,input,select,textarea{
  font-family:"Montserrat","Segoe UI",sans-serif;
}

html{scroll-behavior:smooth}
body{overflow-x:hidden}

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

body{
  position:relative;
  margin:0;
  color:var(--text);
  font-family:"Montserrat","Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top left, rgba(21,139,148,.16), transparent 26%),
    radial-gradient(circle at top right, rgba(217,182,91,.16), transparent 24%),
    linear-gradient(180deg,#fffdf8 0%,#f5f8f6 34%,#eef4f6 100%);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.42), transparent 35%),
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.55), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(217,182,91,.12), transparent 20%);
  opacity:.9;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.18), transparent 72%);
  opacity:.18;
}

h1,h2,h3,h4,h5{
  font-family:"Montserrat","Segoe UI",sans-serif;
  letter-spacing:-.03em;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{max-width:1240px;margin:0 auto;padding:0 24px}

.top-strip{
  background:linear-gradient(90deg,#0a1930,#16345f 55%,#127f89);
  color:#e6f0fa;
  font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 24px rgba(10,25,48,.16);
}

.top-strip .inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  padding:11px 0;
  letter-spacing:.01em;
}

.main-nav{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,251,245,.72);
  backdrop-filter:blur(18px) saturate(155%);
  border-bottom:1px solid rgba(22,52,95,.08);
  box-shadow:0 10px 30px rgba(15,37,69,.06);
}

.main-nav .inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:16px 0;
}

.brand{display:flex;align-items:center;gap:14px;min-width:0}
.brand img{
  width:60px;
  height:60px;
  border-radius:18px;
  object-fit:cover;
  background:#fff;
  padding:4px;
  box-shadow:0 18px 34px rgba(15,37,69,.14);
}
.brand h1{margin:0;font-size:22px;color:var(--ink)}
.brand p{margin:4px 0 0;color:var(--muted);font-size:13px;letter-spacing:.08em;text-transform:uppercase}

.nav-links{display:flex;align-items:center;justify-content:flex-end;gap:10px;flex-wrap:wrap}
.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  padding:0;
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow-soft);
  cursor:pointer;
}

.nav-toggle span{
  position:absolute;
  width:22px;
  height:2px;
  border-radius:999px;
  background:var(--navy);
  transition:transform .2s ease,opacity .2s ease,top .2s ease;
}

.nav-toggle{position:relative}
.nav-toggle span:nth-child(1){top:19px}
.nav-toggle span:nth-child(2){top:26px}
.nav-toggle span:nth-child(3){top:33px}
.nav-toggle:focus-visible{
  outline:2px solid rgba(21,139,148,.45);
  outline-offset:3px;
}

.main-nav.is-open .nav-toggle span:nth-child(1){top:26px;transform:rotate(45deg)}
.main-nav.is-open .nav-toggle span:nth-child(2){opacity:0}
.main-nav.is-open .nav-toggle span:nth-child(3){top:26px;transform:rotate(-45deg)}

.nav-link{
  padding:11px 15px;
  border-radius:999px;
  font-weight:700;
  color:var(--navy);
  transition:background .2s ease,transform .2s ease,color .2s ease,box-shadow .2s ease;
}
.nav-link:hover{background:rgba(255,255,255,.72);color:var(--ink);transform:translateY(-1px);box-shadow:0 10px 24px rgba(15,37,69,.08)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border-radius:999px;
  font-weight:700;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{
  color:#fff;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 42%), linear-gradient(135deg,var(--navy-deep),var(--navy) 45%,var(--teal));
  box-shadow:0 18px 42px rgba(22,52,95,.24);
}
.btn-secondary{
  color:var(--navy);
  background:rgba(255,255,255,.76);
  border:1px solid var(--border-strong);
  backdrop-filter:blur(10px);
}

.lang-pill{
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  font-weight:700;
  color:var(--navy);
}

.hero{padding:54px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:28px;
  align-items:stretch;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:#896419;
  background:var(--gold-soft);
  border:1px solid rgba(217,182,91,.26);
}

.hero-copy{
  padding:24px 0;
  position:relative;
}

.hero-copy h2{
  margin:18px 0 16px;
  font-size:64px;
  line-height:.96;
  color:var(--ink);
  max-width:11ch;
}

.hero-copy p{
  margin:0 0 22px;
  max-width:620px;
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
}

.hero-copy > *{
  animation:fadeRise .7s ease both;
}

.hero-copy > *:nth-child(2){animation-delay:.05s}
.hero-copy > *:nth-child(3){animation-delay:.1s}
.hero-copy > *:nth-child(4){animation-delay:.15s}
.hero-copy > *:nth-child(5){animation-delay:.2s}
.hero-copy > *:nth-child(6){animation-delay:.25s}

.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:20px}

.hero-banner{
  display:grid;
  gap:8px;
  margin:0 0 20px;
  padding:18px 20px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.12)), linear-gradient(135deg, rgba(21,139,148,.08), rgba(217,182,91,.12));
  border:1px solid rgba(22,52,95,.10);
  box-shadow:0 18px 36px rgba(15,37,69,.08);
  backdrop-filter:blur(12px);
}

.hero-banner strong{
  color:var(--ink);
  font-size:18px;
}

.hero-banner span{
  color:var(--muted);
  line-height:1.6;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.hero-point{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(255,255,255,.62);
  border-radius:var(--radius-sm);
  padding:16px;
  box-shadow:0 18px 36px rgba(15,37,69,.08);
  backdrop-filter:blur(10px);
}

.hero-point strong{
  display:block;
  margin-bottom:6px;
  color:var(--ink);
  font-size:15px;
}

.hero-point span{
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}

.hero-card{
  position:relative;
  overflow:hidden;
  min-height:100%;
  color:#fff;
  padding:30px;
  border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(217,182,91,.28), transparent 26%),
    linear-gradient(160deg,#08162c 0%,#16345f 52%,#158b94 100%);
  box-shadow:0 34px 74px rgba(15,37,69,.28);
  border:1px solid rgba(255,255,255,.08);
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -70px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.08), transparent 38%);
  pointer-events:none;
}

.hero-card > *{position:relative;z-index:1}
.hero-visual{
  margin:-4px 0 22px;
  padding:16px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08)), rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
}

.hero-visual img{
  width:100%;
  height:auto;
  border-radius:18px;
}

.hero-card h3{margin:0 0 14px;font-size:32px;max-width:12ch}
.hero-card p{margin:0 0 22px;color:#d6e9f7;line-height:1.7}

.hero-stat-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:18px;
}

.stat{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
}

.stat:hover{
  background:rgba(255,255,255,.14);
}

.stat strong{
  display:block;
  margin-bottom:6px;
  font-size:26px;
}

.stat span{
  color:#d6e9f7;
  font-size:14px;
  line-height:1.5;
}

.mini-note{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#e5f3ff;
  line-height:1.6;
}

.trust-band{
  padding:0 0 24px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.trust-item{
  background:rgba(255,255,255,.76);
  border:1px solid var(--border);
  border-radius:22px;
  padding:16px;
  box-shadow:0 18px 36px rgba(15,37,69,.08);
  backdrop-filter:blur(10px);
}

.trust-item strong{
  display:block;
  margin-bottom:8px;
  color:var(--ink);
  font-size:15px;
  line-height:1.35;
}

.trust-item span{
  display:block;
  color:var(--muted);
  line-height:1.55;
  font-size:13px;
}

.section{position:relative;padding:26px 0 58px}

.service-journey{
  padding:28px;
  border-radius:var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,255,255,.9)),
    linear-gradient(120deg, rgba(21,139,148,.08), rgba(217,182,91,.10));
  border:1px solid rgba(255,255,255,.82);
  box-shadow:var(--shadow-premium);
  backdrop-filter:blur(14px);
}

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

.journey-step{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(22,52,95,.08);
  box-shadow:0 16px 34px rgba(15,37,69,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.journey-step:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 44px rgba(15,37,69,.12);
}

.journey-step span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin-bottom:14px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy),var(--teal));
  color:#fff;
  font-weight:800;
}

.journey-step strong{
  display:block;
  margin-bottom:8px;
  color:var(--ink);
  font-size:18px;
}

.journey-step p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.premium-service-card{
  display:grid;
  align-content:start;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.section-head h3{
  margin:0;
  color:var(--ink);
  font-size:40px;
}

.section-head p{
  margin:0;
  max-width:720px;
  line-height:1.7;
  color:var(--muted);
}

.services{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}

.card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78));
  border:1px solid rgba(255,255,255,.8);
  border-radius:var(--radius-md);
  padding:24px;
  box-shadow:var(--shadow-premium);
  backdrop-filter:blur(14px);
}

.card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.92), transparent);
}

.card::after{
  content:"";
  position:absolute;
  inset:auto auto 18px -40px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(21,139,148,.10), transparent 72%);
  pointer-events:none;
}

.content-visual{
  overflow:hidden;
  margin:-8px -8px 18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.08)), linear-gradient(135deg, rgba(21,139,148,.10), rgba(217,182,91,.14));
  border:1px solid rgba(22,52,95,.08);
}

.content-visual img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

.content-visual-wide{
  margin-bottom:20px;
}

.lift-card{
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.lift-card:hover{
  transform:translateY(-6px);
  box-shadow:0 32px 68px rgba(15,37,69,.16);
  border-color:rgba(21,139,148,.22);
}

.tag{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:var(--teal-soft);
  color:#0f737b;
  font-size:12px;
  font-weight:700;
  margin-bottom:14px;
}

.card h4{
  margin:0 0 10px;
  color:var(--ink);
  font-size:26px;
}

.card p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.65;
}

.card ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.8;
}

.plan-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 14px;
}

.meta-pill{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(247,250,251,.82);
  border:1px solid rgba(22,52,95,.10);
  color:var(--navy);
  font-size:13px;
  font-weight:700;
}

.service-plan-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:22px;
}

.service-plan-card .content-visual{
  margin:-6px -6px 18px;
}

.service-plan-card .tag{
  margin-bottom:10px;
}

.service-plan-heading{
  min-height:92px;
}

.service-plan-heading h4{
  font-size:24px;
  line-height:1.12;
}

.plan-price{
  display:flex;
  align-items:flex-end;
  gap:6px;
  margin:2px 0 14px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(22,52,95,.10);
}

.plan-price strong{
  color:var(--ink);
  font-size:34px;
  line-height:1;
  letter-spacing:0;
}

.plan-price span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  padding-bottom:3px;
}

.service-benefits{
  display:grid;
  gap:8px;
  margin:10px 0 16px;
  padding-left:0;
  list-style:none;
}

.service-benefits li{
  position:relative;
  padding-left:22px;
  line-height:1.55;
}

.service-benefits li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:9px;
  height:9px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--teal));
}

.split{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:18px;
}

.cta{
  color:#fff;
  padding:30px;
  border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(217,182,91,.24), transparent 24%),
    linear-gradient(135deg,#09172d 0%,#16345f 55%,#158b94 100%);
  box-shadow:0 30px 72px rgba(15,37,69,.24);
  border:1px solid rgba(255,255,255,.08);
  position:relative;
  overflow:hidden;
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.08), transparent 40%);
  pointer-events:none;
}

.cta h4{margin:0 0 12px;font-size:30px}
.cta p{margin:0 0 18px;color:#dcedf8;line-height:1.7}

.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-whatsapp{
  color:#fff;
  background:linear-gradient(135deg,#0c8f57,#1fbf73);
  box-shadow:0 14px 34px rgba(12,143,87,.24);
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:40;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:132px;
  padding:14px 18px;
  border-radius:999px;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg,#0c8f57,#1fbf73);
  box-shadow:0 18px 38px rgba(12,143,87,.28);
}

.metric-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.metric{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  box-shadow:0 18px 36px rgba(15,37,69,.08);
}

.metric strong{
  display:block;
  font-size:28px;
  color:var(--ink);
  margin-bottom:4px;
}

.metric span{color:var(--muted);line-height:1.5}

.page-hero{
  padding:42px 0 16px;
}

.page-hero-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,.72fr);
  gap:22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.9)),
    linear-gradient(120deg, rgba(21,139,148,.08), rgba(217,182,91,.08));
  border:1px solid rgba(255,255,255,.84);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-premium);
  backdrop-filter:blur(16px);
  overflow:hidden;
}

.page-hero-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -70px auto;
  width:210px;
  height:210px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(217,182,91,.18), transparent 68%);
  pointer-events:none;
}

.page-hero-card h2{
  margin:14px 0 12px;
  font-size:36px;
  line-height:1.08;
  max-width:12ch;
  color:var(--ink);
}

.page-hero-card p{
  margin:0;
  font-size:17px;
  line-height:1.7;
  color:var(--muted);
  max-width:700px;
}

.aside-card{
  align-self:stretch;
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,249,237,.96), rgba(251,247,239,.82));
  border:1px solid rgba(217,182,91,.20);
  box-shadow:0 16px 32px rgba(15,37,69,.06);
}

.aside-card h4{
  margin:0 0 12px;
  font-size:22px;
  color:var(--ink);
}

.aside-card p,.aside-card li{
  color:var(--muted);
  line-height:1.65;
}

.aside-card ul{margin:0;padding-left:18px}

.aside-card-media{
  display:grid;
  gap:18px;
}

.aside-media{
  overflow:hidden;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(21,139,148,.10), rgba(217,182,91,.14));
  border:1px solid rgba(22,52,95,.08);
}

.aside-media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
}

.checklist li{
  position:relative;
  padding-left:24px;
  margin-bottom:12px;
}

.checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--teal));
}

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

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:18px;
}

.contact-card{
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.8));
  border:1px solid rgba(255,255,255,.8);
  border-radius:var(--radius-md);
  padding:26px;
  box-shadow:var(--shadow-premium);
  backdrop-filter:blur(14px);
}

.contact-card h4{
  margin:0 0 14px;
  font-size:28px;
  color:var(--ink);
}

.contact-list{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.contact-line{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(248,251,252,.88);
  border:1px solid rgba(22,52,95,.08);
}

.contact-line strong{
  display:block;
  margin-bottom:4px;
  color:var(--ink);
}

.notice{
  background:linear-gradient(180deg, #fff6e3, #fff0cf);
  color:#7a5712;
  border:1px solid #edd39b;
  padding:13px 15px;
  border-radius:16px;
}

.premium-hero-card{
  position:relative;
  overflow:hidden;
}

.premium-hero-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -80px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(217,182,91,.22), transparent 68%);
}

.pricing-grid{
  align-items:stretch;
}

.pricing-card{
  display:grid;
  gap:14px;
  min-height:100%;
}

.pricing-card h4{
  display:flex;
  align-items:end;
  gap:6px;
  font-size:42px;
}

.pricing-card h4 small{
  font-size:15px;
  color:var(--muted);
  font-weight:700;
  margin-bottom:7px;
}

.pricing-card .checklist{
  margin-top:2px;
}

.pricing-card .checklist li strong{
  color:var(--ink);
}

.pricing-actions{
  margin-top:auto;
}

.pricing-accent{
  width:82px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold), var(--teal));
  box-shadow:0 10px 22px rgba(21,139,148,.18);
}

.feature-badge{
  display:inline-flex;
  width:max-content;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#0d213f;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.pricing-card-featured{
  transform:translateY(-8px);
  border-color:rgba(217,182,91,.46);
  box-shadow:0 34px 78px rgba(15,37,69,.18);
}

.pricing-card-featured::before{
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(217,182,91,.96), transparent);
}

.footer{
  margin-top:24px;
  background:radial-gradient(circle at top right, rgba(217,182,91,.18), transparent 22%), linear-gradient(180deg,#081326 0%,#09172d 100%);
  color:#dbe7f4;
}

@keyframes fadeRise{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.footer .inner{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:22px;
  padding:36px 0;
}

.footer h5{margin:0 0 12px;font-size:17px}
.footer p,.footer li{color:#c9d6e4;line-height:1.7}
.footer ul{list-style:none;padding:0;margin:0}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:14px 0;
  font-size:14px;
  color:#b9c6d3;
  text-align:center;
}

.empty-state{
  padding:28px;
  text-align:center;
  background:rgba(255,255,255,.78);
  border:1px dashed rgba(22,52,95,.16);
  border-radius:26px;
  color:var(--muted);
}

.auth-page-hero{
  padding:42px 0 56px;
}

.auth-page-shell{
  grid-template-columns:minmax(0,1fr) minmax(360px,.92fr);
  align-items:start;
  gap:28px;
}

.auth-trust-grid{
  margin-top:22px;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.auth-stepper{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:22px 0 0;
}

.auth-step-item{
  display:grid;
  gap:8px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(22,52,95,.10);
  box-shadow:0 14px 28px rgba(15,37,69,.06);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.auth-step-item.active{
  background:linear-gradient(135deg, rgba(217,182,91,.18), rgba(21,139,148,.12));
  border-color:rgba(21,139,148,.18);
  box-shadow:0 18px 36px rgba(15,37,69,.10);
}

.auth-step-item.done{
  background:rgba(21,139,148,.10);
  border-color:rgba(21,139,148,.22);
}

.auth-step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy),var(--teal));
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
}

.auth-step-item strong{
  color:var(--ink);
  font-size:16px;
}

.auth-step-item span{
  color:var(--muted);
  line-height:1.6;
  font-size:13px;
}

.auth-journey-card{
  margin-top:22px;
  padding:22px;
}

.auth-journey-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.auth-form-card{
  display:grid;
  gap:16px;
  align-content:start;
}

.auth-form-card-wide{
  padding:28px;
}

.auth-card-logo{
  width:92px;
  height:92px;
  border-radius:24px;
  object-fit:cover;
  background:#fff;
  padding:6px;
  box-shadow:0 18px 34px rgba(15,37,69,.14);
}

.auth-form{
  display:grid;
  gap:16px;
}

.auth-form .field{
  display:grid;
  gap:8px;
}

.auth-form label{
  display:block;
  margin-bottom:0;
  font-size:13px;
  font-weight:700;
  color:var(--navy);
}

.auth-form input,
.auth-form select,
.auth-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(22,52,95,.12);
  background:rgba(255,255,255,.92);
  color:var(--text);
  font:inherit;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus{
  outline:none;
  border-color:rgba(21,139,148,.58);
  box-shadow:0 0 0 4px rgba(21,139,148,.12);
}

.auth-form select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(22,52,95,.72) 50%),
    linear-gradient(135deg, rgba(22,52,95,.72) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,0));
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 17px) calc(50% - 3px),
    0 0;
  background-size:7px 7px, 7px 7px, 100% 100%;
  background-repeat:no-repeat;
  padding-right:48px;
}

.auth-form select option{
  color:var(--ink);
  background:#f4f8fc;
}

.auth-form textarea{
  min-height:120px;
  resize:vertical;
}

.field-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.field-span-2{
  grid-column:1 / -1;
}

.field-note{
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}

.auth-side-panel{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.auth-side-card{
  display:grid;
  gap:10px;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,250,252,.86));
  border:1px solid rgba(22,52,95,.10);
  box-shadow:0 14px 28px rgba(15,37,69,.06);
}

.auth-side-card strong{
  color:var(--ink);
  font-size:18px;
}

.auth-side-card span,
.auth-side-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

.registration-plan-preview{
  gap:12px;
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,250,252,.9)),
    radial-gradient(circle at top right, rgba(217,182,91,.2), transparent 30%);
  border-color:rgba(217,182,91,.24);
}

.registration-plan-header{
  display:grid;
  gap:8px;
}

.registration-plan-price{
  display:flex;
  align-items:flex-end;
  gap:6px;
  padding:2px 0 10px;
  border-bottom:1px solid rgba(22,52,95,.10);
}

.registration-plan-price strong{
  color:var(--ink);
  font-size:32px;
  line-height:1;
}

.registration-plan-price span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  padding-bottom:3px;
}

.auth-mini-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  display:grid;
  gap:8px;
}

.auth-mini-list li{
  line-height:1.6;
}

.registration-steps{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0;
}

.registration-step{
  padding:14px 12px;
  border-radius:18px;
  border:1px solid rgba(22,52,95,.10);
  background:rgba(255,255,255,.72);
  text-align:center;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}

.registration-step strong{
  display:block;
  margin-bottom:4px;
  color:var(--ink);
  font-size:14px;
}

.registration-step span{
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

.registration-step.active{
  background:linear-gradient(135deg, rgba(217,182,91,.16), rgba(21,139,148,.12));
  border-color:rgba(217,182,91,.24);
}

.registration-step.done{
  background:rgba(21,139,148,.10);
  border-color:rgba(21,139,148,.24);
}

.form-section{
  margin:0;
  padding:20px;
  border-radius:24px;
  background:rgba(248,251,252,.84);
  border:1px solid rgba(22,52,95,.08);
  box-shadow:0 14px 28px rgba(15,37,69,.06);
}

.form-step{display:none}
.form-step.active{display:block}

.section-badge{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  margin-bottom:10px;
  border-radius:999px;
  background:var(--gold-soft);
  border:1px solid rgba(217,182,91,.22);
  color:#896419;
  font-size:12px;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.form-section h4{
  margin:0 0 8px;
  font-size:20px;
  color:var(--ink);
}

.form-section p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.form-actions{
  display:flex;
  gap:12px;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn-step{
  width:auto;
  min-width:160px;
}

.auth-submit{
  width:100%;
}

.camera-capture{
  display:grid;
  gap:12px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(22,52,95,.08);
  box-shadow:0 14px 28px rgba(15,37,69,.06);
}

.camera-preview,.camera-snapshot{
  width:100%;
  min-height:240px;
  max-height:320px;
  object-fit:cover;
  border-radius:18px;
  background:linear-gradient(180deg,#dbe8ee,#f8fbfd);
  border:1px solid rgba(22,52,95,.10);
}

.camera-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.camera-actions .btn-step{
  min-width:unset;
  flex:1 1 160px;
}

.auth-note{
  margin:0;
}

.auth-success-panel{
  display:grid;
  gap:16px;
}

.auth-next-step-message{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(217,182,91,.13);
  border:1px solid rgba(217,182,91,.28);
  box-shadow:0 14px 28px rgba(15,37,69,.06);
}

.auth-next-step-message strong{
  color:var(--ink);
}

.auth-next-step-message span{
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

.auth-checklist{
  display:grid;
  gap:12px;
}

.auth-checklist-item{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(22,52,95,.10);
  box-shadow:0 14px 28px rgba(15,37,69,.06);
}

.auth-checklist-item strong{
  color:var(--ink);
}

.auth-checklist-item span{
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

.auth-links{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.auth-links a{
  color:var(--navy);
  font-size:14px;
  font-weight:700;
}

@media (max-width:1100px){
  .hero-grid,.page-hero-card,.content-grid,.contact-grid,.split,.services,.info-grid,.footer .inner,.trust-grid,.metric-row,.journey-grid{
    grid-template-columns:1fr;
  }

  .hero-copy h2{font-size:48px;max-width:none}
  .page-hero-card h2{font-size:42px}
  .hero-points{grid-template-columns:1fr}
  .section-head h3{font-size:34px}
  .main-nav .inner{align-items:flex-start}
  .nav-links{justify-content:flex-start}
  .pricing-card-featured{transform:none}
  .auth-page-shell,.auth-trust-grid,.auth-journey-grid,.field-grid,.auth-stepper,.auth-side-panel{grid-template-columns:1fr}
}

@media (max-width:760px){
  .container{padding:0 16px}
  .top-strip .inner{justify-content:center;text-align:center}
  .main-nav .inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
  }
  .brand img{width:54px;height:54px;border-radius:16px}
  .brand h1{font-size:20px}
  .nav-toggle{display:inline-flex}
  .nav-links{
    width:100%;
    display:none;
    grid-column:1 / -1;
    grid-template-columns:1fr;
    gap:10px;
    padding-top:14px;
  }
  .main-nav.is-open .nav-links{display:grid}
  .btn,.nav-link,.lang-pill{width:100%;justify-content:center}
  .hero{padding:34px 0 16px}
  .hero-copy{padding:0}
  .hero-copy h2{font-size:38px}
  .hero-copy p{font-size:16px;line-height:1.65}
  .hero-banner{padding:16px}
  .hero-banner strong{font-size:17px}
  .page-hero-card,.hero-card,.card,.contact-card,.cta{padding:22px}
  .page-hero-card h2{font-size:34px}
  .section-head h3{font-size:30px}
  .card h4,.contact-card h4,.cta h4{font-size:24px}
  .hero-stat-grid{grid-template-columns:1fr}
  .stat strong{font-size:22px}
  .metric strong{font-size:24px}
  .cta-actions{flex-direction:column}
  .footer .inner{padding:28px 0}
  .whatsapp-float{right:16px;bottom:16px;min-width:0;padding:14px 16px;font-size:14px}
  .auth-links{flex-direction:column}
  .auth-links a{width:100%;text-align:center}
  .form-actions{flex-direction:column}
  .btn-step{width:100%}
}

@media (max-width:560px){
  .hero-copy h2{font-size:32px;line-height:1.05}
  .page-hero{padding:28px 0 12px}
  .page-hero-card,.hero-card,.card,.contact-card,.cta,.trust-item,.metric{padding:18px}
  .page-hero-card h2{font-size:30px}
  .section-head h3{font-size:27px}
  .section-head p,.page-hero-card p,.card p,.cta p{font-size:15px;line-height:1.65}
  .tag,.meta-pill{font-size:11px}
  .contact-line{padding:12px 14px}
  .whatsapp-float{
    right:12px;
    bottom:12px;
    width:calc(100% - 24px);
    max-width:220px;
    justify-content:center;
  }
}
