/* Relocate Venezuela – minimal responsive styles */
:root{
  --bg:#ffffff;
  --surface:#f6f7fb;
  --text:#0b1220;
  --muted:#5b6473;
  --border:#e6e8ef;

  /* Venezuela-inspired accents */
  --primary:#173b8c; /* blue */
  --accent:#f5c542;  /* yellow */
  --danger:#c62828;  /* red */

  --radius:16px;
  --shadow: 0 18px 40px rgba(11, 18, 32, 0.10);
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

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

.container{
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--muted);
}

.kicker{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color: var(--muted);
}

h1,h2,h3{line-height:1.15; margin:0 0 12px}
p{margin:0 0 14px; color: var(--muted)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight:600;
  cursor:pointer;
  transition: transform .06s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover{box-shadow: var(--shadow)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: var(--primary);
  border-color: rgba(23,59,140,.15);
  color: #fff;
}
.btn.accent{
  background: var(--accent);
  border-color: rgba(245,197,66,.25);
}
.btn.ghost{
  background: transparent;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand-mark{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 10px 25px rgba(23,59,140,.25);
}
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-size:14px;
  color: var(--text);
  opacity:.92;
}
.nav a.muted{color:var(--muted)}
.nav .cta{
  margin-left: 8px;
}

.menu-btn{
  display:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:700;
}

.mobile-panel{
  display:none;
  border-top:1px solid var(--border);
  padding: 10px 0 16px;
}
.mobile-panel a{
  display:block;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(230,232,239,.9);
  font-weight:600;
}

.hero{
  padding: 56px 0 34px;
  background:
    radial-gradient(1200px 500px at 15% 10%, rgba(245,197,66,.35), rgba(255,255,255,0) 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(23,59,140,.25), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 45%, #ffffff 100%);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}
.hero h1{
  font-size: clamp(34px, 3.2vw, 52px);
  letter-spacing:-.02em;
}
.hero .lead{
  font-size: 16px;
  max-width: 62ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 18px;
}
.hero-cities{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 18px;
}
.hero-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card .img{
  height: 220px;
  background-size: cover;
  background-position: center;
}
.hero-card .content{
  padding: 16px;
}
.hero-card .content h3{margin-bottom: 6px}
.hero-card ul{margin: 10px 0 0; padding-left: 18px; color: var(--muted)}

.section{
  padding: 52px 0;
}
.section.alt{
  background: var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.section-head h2{
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing:-.02em;
}
.section-head p{max-width: 62ch}

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

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(11,18,32,.05);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px}
.card .meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}
.card .meta span{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background: #fff;
}

.icon{
  width:18px;height:18px; display:inline-block;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{margin: 8px 0}

.hr{
  height:1px;
  background: var(--border);
  margin: 18px 0;
}

.form{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.form .full{grid-column: 1 / -1}
.label{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: #fff;
  font: inherit;
}
textarea{min-height: 120px; resize: vertical}
.form-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  align-items:center;
}
.notice{
  font-size: 12px;
  color: var(--muted);
}
.success{
  display:none;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(46,125,50,.25);
  border-radius: 12px;
  background: rgba(46,125,50,.08);
  color: #1b5e20;
  font-weight: 650;
}
.small{
  font-size: 13px;
  color: var(--muted);
}

.footer{
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.footer a{color: var(--muted)}
.footer a:hover{color: var(--text)}
.footer .copyright{
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}
.breadcrumbs a{color: var(--muted)}
.breadcrumbs .sep{opacity:.55}

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 14px;
  border:1px solid var(--border);
  background:#fff;
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align:left;
}
.table th{
  font-size: 13px;
  color: var(--muted);
  background: rgba(246,247,251,.7);
}
.table tr:last-child td{border-bottom:none}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid.cols-3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
}
@media (max-width: 820px){
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .mobile-panel.show{display:block}
  .form{grid-template-columns: 1fr}
}

/* Extra sections (team, timeline, accordions) */
.steps{
  display:grid;
  gap: 16px;
}
.step{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.step .num{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(23,59,140,.08);
  border: 1px solid rgba(23,59,140,.12);
  color: var(--primary);
  flex: 0 0 auto;
}
.step .body h3{margin:0 0 6px}
.step .body p{margin:0}

.team-grid{
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.person{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.avatar{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(23,59,140,.18);
  color: #fff;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  letter-spacing: .04em;
  flex: 0 0 auto;
}
.person .role{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.person .name{
  font-weight: 850;
  margin-bottom: 4px;
}
.person .desc{
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.offer-grid{
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.offer{
  position: relative;
  overflow:hidden;
}
.offer::after{
  content:"";
  position:absolute;
  inset: -40% -20%;
  background: radial-gradient(420px 220px at 30% 20%, rgba(245,197,66,.32), rgba(255,255,255,0) 60%),
              radial-gradient(460px 260px at 80% 30%, rgba(23,59,140,.22), rgba(255,255,255,0) 60%);
  pointer-events:none;
}
.offer > *{position:relative}

details.accordion{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
}
details.accordion summary{
  cursor:pointer;
  font-weight: 800;
  outline:none;
  list-style:none;
}
details.accordion summary::-webkit-details-marker{display:none}
details.accordion summary:after{
  content:"+";
  float:right;
  font-weight: 900;
  color: var(--muted);
}
details.accordion[open] summary:after{content:"–"}
details.accordion .content{
  margin-top: 12px;
  color: var(--muted);
}

.kpi{
  display:flex;
  align-items:flex-start;
  gap: 12px;
}
.kpi .value{
  font-size: 30px;
  font-weight: 900;
  letter-spacing:-.02em;
}
.kpi .label{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px){
  .team-grid{grid-template-columns: 1fr}
  .offer-grid{grid-template-columns: 1fr}
}

/* v3 additions */
.hero.slim{padding:44px 0 24px}
.price{font-size:28px; font-weight:850; letter-spacing:-.02em; margin:0 0 6px}
.price small{display:block; font-size:12px; color:var(--muted); font-weight:650; letter-spacing:0}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.pill{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border:1px solid var(--border); border-radius:999px; background:#fff; color:var(--muted); font-size:13px}
.quote{font-size:14px; color:var(--text); font-weight:700; margin:0 0 10px}
.mini{font-size:12px; color:var(--muted)}

/* Language dropdown */
.lang{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:700;
  cursor:pointer;
  color: var(--text);
}
.lang-btn:hover{box-shadow: 0 10px 24px rgba(11,18,32,.05)}
.lang-btn:active{transform: translateY(1px)}
.lang-caret{opacity:.7; font-size: 12px}

.lang-menu{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 210px;
  border:1px solid var(--border);
  background:#fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 6px;
  display:none;
  z-index: 60;
}

.lang.open .lang-menu{display:block}

.lang-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight:700;
  color: var(--text);
}
.lang-item:hover{background: rgba(246,247,251,.9)}
.lang-item.active{
  background: rgba(23,59,140,.08);
  color: var(--primary);
}

.lang-tag{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 8px;
  background: #fff;
}
.lang-item.active .lang-tag{
  border-color: rgba(23,59,140,.25);
  color: var(--primary);
}

/* Mobile: make the dropdown expand in-flow */
.mobile-panel .lang{display:block; margin: 12px 0}
.mobile-panel .lang-btn{width:100%; justify-content:space-between}
.mobile-panel .lang-menu{
  position: static;
  top:auto; right:auto;
  min-width: 0;
  width: 100%;
  margin-top: 10px;
  box-shadow: none;
}
