/* lusomove.pt — premium editorial theme (light background + deep-blue cards) */

:root{
  /* Background: light premium (no pure white) */
  --bg: #d9ecff;
  --bg2:#cfe6ff;

  /* Deep blue surfaces (premium, not dark) */
  --surface: #0f2f54;
  --surface2:#123a67;
  --surface3:#0c2746;

  /* Borders / glass */
  --stroke: rgba(255,255,255,.18);
  --stroke2: rgba(255,255,255,.26);

  /* Text on deep surfaces */
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.56);

  /* Text on light background (used in a few places) */
  --ink: #122033;
  --ink2:#29425f;
  --ink3:#4b6178;

  /* Brand */
  --accent:#56B9FF;    /* celeste */
  --accent2:#2B89FF;

  --r: 22px;
  --r2: 16px;

  /* Shadows: soft + premium */
  --shadow: 0 22px 60px rgba(9, 20, 35, .18);
  --shadow2: 0 14px 34px rgba(9, 20, 35, .14);
  --ring: 0 0 0 6px rgba(86,185,255,.18);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html,body{ overflow-x:hidden; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 18% 0%, rgba(86,185,255,.22), transparent 60%),
    radial-gradient(1200px 680px at 86% 10%, rgba(43,137,255,.14), transparent 62%),
    linear-gradient(180deg, var(--bg2), var(--bg));
}

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

/* Container (use more width, less “empty sides”) */
.container{
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 18px 44px;
}

/* ========== Compact header (no wasted height) ========== */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding: 10px 14px;
  border-radius: 18px;

  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,32,51,.10);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.mark{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    radial-gradient(12px 12px at 32% 28%, rgba(86,185,255,.85), transparent 60%),
    radial-gradient(18px 18px at 70% 68%, rgba(43,137,255,.55), transparent 62%),
    linear-gradient(180deg, #0f2f54, #0b2442);
  box-shadow: 0 10px 24px rgba(9,20,35,.18);
  border: 1px solid rgba(255,255,255,.25);
}
.brand-text b{
  display:block;
  font-size: 15px;
  letter-spacing: .2px;
  color: var(--ink);
}
.small{
  font-size: 12px;
  color: var(--ink3);
}

.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.badge{
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink2);
  background: rgba(86,185,255,.14);
  border: 1px solid rgba(43,137,255,.18);
}

/* Language */
.lang{
  display:flex;
  gap:6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(18,32,51,.06);
  border: 1px solid rgba(18,32,51,.10);
}
.lang-btn{
  border:0;
  cursor:pointer;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink2);
}
.lang-btn[aria-pressed="true"]{
  background: rgba(86,185,255,.22);
  color: var(--ink);
}

/* ========== Newsletter (top capture) ========== */
.newsletter{
  margin-top: 14px;
  padding: 18px 18px;
  border-radius: 22px;

  background:
    radial-gradient(500px 160px at 12% 30%, rgba(86,185,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.50));
  border: 1px solid rgba(18,32,51,.10);
  box-shadow: var(--shadow);
}

.nl-left{ max-width: 720px; }
.nl-kicker{
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: 11px;
  color: rgba(18,32,51,.70);
}
.nl-title{
  margin-top: 6px;
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
}
.nl-sub{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(18,32,51,.66);
}

.nl-form{
  display:grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 10px;
  align-items:center;
  margin-top: 12px;
}
input{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,32,51,.14);
  background: rgba(255,255,255,.82);
  color: var(--ink);
  outline: none;
}
input:focus{
  box-shadow: var(--ring);
  border-color: rgba(86,185,255,.55);
}

.btn{
  cursor:pointer;
  border:0;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  color: #072035;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 30px rgba(43,137,255,.22);
  white-space: nowrap;
}
.btn:hover{ filter: brightness(1.03); }

.nl-msg{
  grid-column: 1 / -1;
  font-size: 13px;
  color: rgba(18,32,51,.74);
  min-height: 18px;
  padding-left: 2px;
}

/* A11y helper */
.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ========== Hero (editorial, removes “empty blocks”) ========== */
.hero{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 14px;
  align-items: start;
}

/* Deep blue editorial cards */
.hero-card,
.side-card,
.radar-shell{
  background: linear-gradient(180deg, rgba(15,47,84,.94), rgba(12,39,70,.94));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.hero-inner{ padding: 22px 22px 18px; }

.h1{
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.lead{
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 58ch;
}
.lead b{ color: rgba(255,255,255,.96); }

.kpis{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
}
.kpi{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.kpi b{ color:#fff; }

.trust{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.74);
  font-size: 13px;
}
.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(86,185,255,.95);
  box-shadow: 0 0 0 6px rgba(86,185,255,.16);
}

/* Right side */
.hero-side{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.side-card{ padding: 18px 18px 16px; }
.h2{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .2px;
}
.muted{ color: rgba(255,255,255,.72); margin-top: 6px; font-size: 13px; }

.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.84);
}
.list li{ margin: 8px 0; line-height: 1.35; }
.list.compact li{ margin: 6px 0; }

/* ========== Radar (premium rail) ========== */
.radar-section{ margin-top: 14px; }

.radar-shell{
  padding: 18px;
  overflow:hidden;
}

.radar-kicker{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.radar-meta{
  font-size: 12px;
  color: rgba(255,255,255,.68);
  text-align:right;
}

/* rail: horizontal carousel, smooth, no “powerpoint” */
.radar-wrap{ width:100%; }

.radar-grid{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.radar-grid::-webkit-scrollbar{ height: 8px; }
.radar-grid::-webkit-scrollbar-track{ background: rgba(255,255,255,.08); border-radius: 999px; }
.radar-grid::-webkit-scrollbar-thumb{ background: rgba(86,185,255,.28); border-radius: 999px; }

.radar-card{
  scroll-snap-align: start;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  min-height: 320px;
  position:relative;
}
.radar-media{
  height: 160px;
  background: rgba(0,0,0,.18);
}
.radar-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.radar-body{ padding: 12px 12px 14px; }
.radar-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  padding: 6px 10px;
  border-radius: 999px;
}
.radar-title{
  margin: 10px 0 8px;
  font-weight: 900;
  color: rgba(255,255,255,.94);
  line-height: 1.22;
}
.radar-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.radar-link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(86,185,255,.95);
  font-weight: 800;
}
.radar-link:hover{ text-decoration: underline; }

/* Skeleton */
.radar-skeleton{
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  min-height: 320px;
}
.sk-media{ height: 160px; background: rgba(255,255,255,.06); }
.sk-body{ padding: 12px; }
.sk-line{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  margin: 10px 0;
}
.sk-line.w80{ width: 80%; }
.sk-line.w60{ width: 60%; }
.sk-line.w40{ width: 40%; }

/* Footer */
.footer{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 4px 0;
  color: rgba(18,32,51,.62);
  font-size: 13px;
}
.link{ color: rgba(18,32,51,.72); font-weight: 800; }
.sep{ opacity:.6; padding: 0 8px; }

/* Responsive */
@media (max-width: 980px){
  .container{ padding: 14px 14px 34px; }
  .hero{ grid-template-columns: 1fr; }
  .h1{ font-size: 44px; }
  .nl-form{ grid-template-columns: 1fr; }
  .topbar{ padding: 10px 12px; }
}
@media (max-width: 520px){
  .h1{ font-size: 38px; }
  .kpi{ padding: 9px 10px; }
  .radar-grid{ grid-auto-columns: minmax(240px, 1fr); }
}
