:root{
  --bg: #f3fffe;
  --bg2: #e7fbfb;
  --card: rgba(255,255,255,.78);
  --text: #0b2f33;
  --muted: #2c6b70;
  --brand: #12c6c6;
  --brand2:#0aa3a3;
  --line: rgba(11,47,51,.12);
  --shadow: 0 18px 50px rgba(11,47,51,.10);
  --shadow2: 0 10px 25px rgba(11,47,51,.10);
  --radius: 20px;
  --radius2: 28px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(18,198,198,.16), transparent 60%),
    radial-gradient(900px 700px at 80% 10%, rgba(10,163,163,.14), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow-x:hidden;
}

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

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:72px 0}
.section.tight{padding:48px 0}
.hr{height:1px; background:var(--line); margin:22px 0}

.pill{
  display:inline-flex; gap:10px; align-items:center;
  background:rgba(18,198,198,.12);
  border:1px solid rgba(18,198,198,.22);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.02em;
  font-size:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:16px;
  font-weight:800;
  border:1px solid rgba(11,47,51,.14);
  background:rgba(255,255,255,.65);
  box-shadow: var(--shadow2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px); box-shadow: var(--shadow); background:rgba(255,255,255,.85)}
.btn.primary{
  border-color: rgba(18,198,198,.35);
  background: linear-gradient(135deg, rgba(18,198,198,.95), rgba(10,163,163,.95));
  color:white;
}
.btn.primary:hover{filter:saturate(1.05); transform:translateY(-2px)}
.btn.ghost{
  background:transparent;
  box-shadow:none;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(243,255,254,.72);
  border-bottom:1px solid var(--line);
}
.topbar .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:44px; width:auto}
.lang-toggle{
  display:flex; align-items:center; gap:10px;
}
.lang-toggle button{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.6);
  font-weight:800;
  cursor:pointer;
}
.lang-toggle button:hover{background:rgba(255,255,255,.9)}
.nav{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.nav a{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  color:var(--muted);
}
.nav a:hover{border-color:var(--line); background:rgba(255,255,255,.6); color:var(--text)}
.nav a.active{border-color: rgba(18,198,198,.35); background:rgba(18,198,198,.10); color:var(--text)}

.hero{
  padding:28px 0 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.hero-card{
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.55);
  position:relative;
}
.hero-media{
  position:absolute; inset:0;
  background-position:center;
  background-size:cover;
  filter:saturate(1.05) contrast(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(243,255,254,.96) 0%, rgba(243,255,254,.65) 42%, rgba(243,255,254,.15) 100%),
    radial-gradient(600px 300px at 20% 20%, rgba(18,198,198,.26), transparent 60%);
}
.hero-content{
  position:relative;
  padding:34px;
  min-height: 420px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.h1{
  font-size: clamp(28px, 3.3vw, 46px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-.02em;
}
.lead{
  font-size: 16px;
  color:var(--muted);
  line-height:1.65;
  max-width: 54ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-menu{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.menu-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  padding:16px;
}
.menu-card h3{margin:0 0 6px; font-size:14px; letter-spacing:.02em}
.menu-card p{margin:0; color:var(--muted); font-size:13px; line-height:1.5}
.menu-grid{
  display:grid; gap:10px;
}
.menu-grid a{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(11,47,51,.10);
  background: rgba(255,255,255,.7);
  font-weight:900;
  color:var(--text);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.menu-grid a:hover{transform:translateY(-2px); background:rgba(255,255,255,.9); box-shadow: var(--shadow2)}
.menu-grid a span{color:var(--muted); font-weight:800; font-size:12px}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.card.pad{padding:18px}
.card h3{margin:0 0 10px}
.card p{margin:0; color:var(--muted); line-height:1.65}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(10,163,163,.12);
  border:1px solid rgba(10,163,163,.22);
  font-weight:900;
  color:var(--muted);
  font-size:12px;
}

.kpis{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.kpi{
  padding:16px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
}
.kpi b{display:block; font-size:22px; letter-spacing:-.02em}
.kpi span{display:block; margin-top:4px; color:var(--muted); font-weight:700; font-size:12px; line-height:1.4}

.media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  position:relative;
  min-height: 280px;
  background: #dff8f7;
}
.media .img{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.media .shade{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,47,51,.12), rgba(11,47,51,.05), rgba(243,255,254,.90));
}
.media .caption{
  position:absolute; left:18px; right:18px; bottom:16px;
  background: rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius: 18px;
  padding:14px;
  color:var(--muted);
  font-weight:700;
  line-height:1.5;
}

.footer{
  padding:40px 0 26px;
  border-top:1px solid var(--line);
  background: rgba(243,255,254,.6);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:18px;
}
.small{font-size:13px; color:var(--muted); line-height:1.6}
.footer a{color:var(--muted); font-weight:800}
.footer a:hover{color:var(--text)}

.page-title{
  padding:38px 0 8px;
}
.page-title h1{margin:10px 0 0; font-size:34px; letter-spacing:-.02em}
.breadcrumbs{color:var(--muted); font-weight:800; font-size:12px}

.form{
  display:grid;
  gap:12px;
}
.input, .textarea{
  width:100%;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(11,47,51,.16);
  background: rgba(255,255,255,.75);
  font-weight:700;
  outline:none;
}
.textarea{min-height:120px; resize:vertical}
.help{
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
  font-weight:700;
}

.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.in-view{
  opacity:1;
  transform: translateY(0);
}

.cookie{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:80;
  display:none;
}
.cookie .box{
  max-width: var(--max);
  margin:0 auto;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:16px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
}
.cookie p{margin:0; color:var(--muted); line-height:1.5; font-weight:700; font-size:13px}
.cookie .actions{display:flex; gap:10px; flex-wrap:wrap}

.modal{
  position:fixed;
  inset:0;
  background: rgba(11,47,51,.35);
  backdrop-filter: blur(10px);
  display:none;
  z-index:90;
  padding:18px;
}
.modal .panel{
  max-width: 780px;
  margin: 8vh auto 0;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal .panel .inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:0;
}
.modal .visual{
  min-height: 320px;
  position:relative;
}
.modal .visual .img{position:absolute; inset:0; background-size:cover; background-position:center}
.modal .visual .overlay{position:absolute; inset:0; background:linear-gradient(135deg, rgba(18,198,198,.15), rgba(243,255,254,.85))}
.modal .content{
  padding:22px;
  display:flex; flex-direction:column; gap:10px; justify-content:center;
}
.modal h3{margin:0; font-size:20px}
.modal p{margin:0; color:var(--muted); line-height:1.6; font-weight:700}
.modal .close{
  position:absolute;
  right:12px; top:12px;
  width:40px; height:40px; border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  font-weight:900;
  cursor:pointer;
}

.support{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:95;
}
.support .bubble{
  width:56px; height:56px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.55);
  background: linear-gradient(135deg, rgba(18,198,198,.95), rgba(10,163,163,.95));
  color:white;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  cursor:pointer;
  user-select:none;
}
.support .panel{
  position:absolute;
  left:0;
  bottom:66px;
  width:min(360px, calc(100vw - 32px));
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:none;
}
.support .panel header{
  padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between;
  background: rgba(18,198,198,.10);
  border-bottom:1px solid var(--line);
}
.support .panel header b{font-size:13px}
.support .panel header button{
  border:1px solid var(--line);
  background: rgba(255,255,255,.8);
  border-radius: 12px;
  padding:8px 10px;
  font-weight:900;
  cursor:pointer;
}
.support .panel .body{padding:14px 16px; display:grid; gap:10px}
.support .panel .body small{color:var(--muted); font-weight:700; line-height:1.4}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero-content{min-height: 420px}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .kpis{grid-template-columns: 1fr 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .modal .panel .inner{grid-template-columns: 1fr}
  .modal .visual{min-height: 220px}
}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none}
  .btn, .menu-grid a{transition:none}
}