:root {
  --bg: #f5f5f0;
  --bg-dark: #0f172a;
  --text-dark: #020617;
  --text-muted: #6b7280;
  --accent: #005f63;
  --accent-soft: #e0f2f1;
  --card-bg: #ffffff;
  --border-subtle: #e5e7eb;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text-dark); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
header { background: var(--bg-dark); color: #e5e7eb; }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo-wrap { display: flex; align-items: center; gap: .75rem; }
.logo-wrap img { height: 56px; width: auto; }
.brand-text { font-weight: 700; letter-spacing: .06em; font-size: .8rem; text-transform: uppercase; }
nav a { margin-left: 1rem; font-size: .95rem; color: #e5e7eb; }
nav a:hover { color: #ffffff; }
.btn-primary {
  padding: .6rem 1.4rem; border-radius: 999px; border: none;
  background: #00897b; color: #e0f2f1; font-weight: 600;
  cursor: pointer; font-size: .95rem;
}
.btn-primary:hover { background: #00695c; }
main { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }
.hero {
  display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1.1fr);
  gap: 2rem; align-items: center; margin-bottom: 3rem;
}
.hero h1 { font-size: clamp(2.1rem,3.4vw,3rem); margin-top:0; margin-bottom:1rem; color: var(--bg-dark); }
.hero p { margin:0 0 1.5rem; color:var(--text-muted); line-height:1.6; }
.hero-badges { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:1.5rem; }
.badge {
  background: var(--accent-soft); color:#004d40;
  padding:.35rem .8rem; border-radius:999px; font-size:.8rem;
}
.hero-card {
  background: var(--bg-dark); color:#e5e7eb;
  padding:1.5rem; border-radius:1.1rem;
  box-shadow:0 20px 60px rgba(15,23,42,.5);
}
.hero-card h2 { margin-top:0; margin-bottom:.75rem; font-size:1.1rem; }
.hero-kpis {
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.75rem 1rem; font-size:.85rem;
}
.hero-kpis strong { display:block; font-size:1.1rem; }
.section { margin-bottom:3rem; }
.section h2 { font-size:1.6rem; margin-bottom:.4rem; color:var(--bg-dark); }
.section > p { max-width:720px; color:var(--text-muted); line-height:1.6; }
.cards {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem; margin-top:1.5rem;
}
.card {
  background:var(--card-bg); border-radius:1rem; padding:1.25rem 1.4rem;
  border:1px solid var(--border-subtle); box-shadow:0 14px 40px rgba(15,23,42,.04);
}
.card h3 { margin-top:0; margin-bottom:.4rem; font-size:1.1rem; }
.card p { margin:0; color:var(--text-muted); line-height:1.6; font-size:.93rem; }
.list { margin-top:.8rem; padding-left:1.1rem; color:var(--text-muted); font-size:.93rem; }
.list li { margin-bottom:.35rem; }
.contact-box {
  display:grid; grid-template-columns:minmax(0,1.2fr) minmax(0,1.1fr);
  gap:1.8rem; margin-top:1.5rem;
}
form { display:grid; gap:.9rem; }
label { font-size:.9rem; font-weight:500; }
input, textarea {
  border-radius:.6rem; border:1px solid var(--border-subtle);
  padding:.6rem .7rem; font-size:.93rem; font-family:inherit;
}
textarea { min-height:130px; resize:vertical; }
footer {
  border-top:1px solid var(--border-subtle);
  padding:1.3rem 1.5rem 2rem; font-size:.85rem;
  color:var(--text-muted); text-align:center;
}
footer a { color:var(--text-muted); margin:0 .4rem; }
footer a:hover { color:var(--accent); }
.page-title { font-size:1.8rem; margin-top:0; margin-bottom:.6rem; }
.page-intro { max-width:720px; color:var(--text-muted); line-height:1.6; }
@media (max-width:900px){
  .header-inner{flex-direction:column;align-items:flex-start;}
  nav{width:100%;display:flex;flex-wrap:wrap;gap:.5rem;}
  nav a{margin:0;margin-right:1rem;}
  main{padding:1.6rem 1.1rem 2.4rem;}
  .hero{grid-template-columns:minmax(0,1fr);}
  .hero-card{order:-1;}
  .contact-box{grid-template-columns:minmax(0,1fr);}
}
