:root{
  --bg:#0b1220;
  --bg-soft:#121b2d;
  --card:#ffffff;
  --text:#111827;
  --text-light:#5b6472;
  --white:#ffffff;
  --gold:#c9a227;
  --gold-dark:#9f7f18;
  --green:#1f9d55;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,0.15);
  --container:1180px;
}

*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#f8fafc;
  line-height:1.5;
}
a{text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 24px;
  border-radius:12px;
  font-weight:700;
  transition:.25s ease;
  cursor:pointer;
  border:none;
}
.btn-primary{
  background:var(--gold);
  color:#111;
  box-shadow:var(--shadow);
}
.btn-primary:hover{
  background:var(--gold-dark);
  color:#fff;
  transform:translateY(-2px);
}
.btn-whatsapp{
  background:var(--green);
  color:#fff;
  box-shadow:var(--shadow);
}
.btn-whatsapp:hover{
  filter:brightness(1.05);
  transform:translateY(-2px);
}
.btn-outline{
  border:2px solid rgba(255,255,255,0.25);
  color:#fff;
  background:transparent;
}

.topbar{
  background:#09101d;
  color:#fff;
  font-size:14px;
  padding:10px 0;
}
.topbar-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.topbar a{color:#fff}

header.hero{
  background:linear-gradient(135deg, rgba(11,18,32,0.97), rgba(18,27,45,0.96)),
  url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color:#fff;
  padding:36px 0 80px;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-bottom:28px;
}

.logo{
  font-size:28px;
  font-weight:800;
}
.logo span{color:var(--gold)}

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

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:32px;
  align-items:start;
}

.hero h1{
  font-size:48px;
  line-height:1.1;
  margin-bottom:18px;
  max-width:760px;
}

.hero p.lead{
  font-size:20px;
  color:#d7dbe2;
  max-width:720px;
  margin-bottom:28px;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}

.badge{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  color:#f4f4f5;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.hero-side{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.profile-card{
  background:rgba(255,255,255,0.98);
  color:var(--text);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.profile-photo{
  width:100%;
  height:460px;
  object-fit:cover;
  object-position:center top;
}

.profile-info{
  padding:20px;
}

.profile-info h3{
  font-size:24px;
  margin-bottom:6px;
}

.profile-info p{
  color:var(--text-light);
  margin-bottom:8px;
}

.hero-card{
  background:rgba(255,255,255,0.98);
  color:var(--text);
  border-radius:20px;
  padding:26px;
  box-shadow:var(--shadow);
}

.hero-card h3{
  font-size:24px;
  margin-bottom:10px;
}

.hero-card p{
  color:var(--text-light);
  margin-bottom:18px;
}

.form-group{margin-bottom:14px}
.form-group label{
  display:block;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
}

.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  padding:14px;
  border:1px solid var(--border);
  border-radius:12px;
  font-size:15px;
  outline:none;
}

.form-group textarea{
  min-height:110px;
  resize:vertical;
}

section{padding:76px 0}

.section-title{
  font-size:36px;
  margin-bottom:14px;
  text-align:center;
}

.section-subtitle{
  max-width:820px;
  margin:0 auto 42px;
  text-align:center;
  color:var(--text-light);
  font-size:18px;
}

.cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  background:#fff;
  border-radius:18px;
  padding:26px;
  box-shadow:0 8px 20px rgba(15,23,42,0.06);
  border:1px solid #eef2f7;
}

.card h3{
  margin-bottom:12px;
  font-size:22px;
}

.card p{color:var(--text-light)}

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

.area-item{
  background:#f8fafc;
  border:1px solid #e8edf5;
  border-radius:16px;
  padding:22px;
}

.area-item h4{
  margin-bottom:8px;
  font-size:20px;
}

.area-item p{
  color:var(--text-light);
  font-size:15px;
}

.authority{
  background:linear-gradient(135deg, #0e1728, #1a2640);
  color:#fff;
}

.authority-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

.authority-box{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:26px;
}

.authority ul{padding-left:18px}
.authority li{margin-bottom:10px;color:#e5e7eb}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step{
  background:#fff;
  border-radius:18px;
  padding:24px;
  border:1px solid #edf2f7;
  box-shadow:0 8px 20px rgba(15,23,42,0.05);
}

.step-number{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--gold);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:14px;
}

.cta-final{
  background:linear-gradient(135deg, #121b2d, #0b1220);
  color:#fff;
  text-align:center;
}

.cta-final h2{
  font-size:38px;
  margin-bottom:14px;
}

.cta-final p{
  max-width:760px;
  margin:0 auto 24px;
  color:#d6dbe5;
  font-size:18px;
}

footer{
  background:#0b1220;
  color:#d1d5db;
  padding:32px 0;
  font-size:14px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.footer-grid a{color:#fff}

.floating-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  width:62px;
  height:62px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 12px 28px rgba(0,0,0,0.25);
}

.floating-whatsapp svg{
  width:42px;
  height:42px;
}

@media (max-width:1000px){
  .hero-grid,
  .authority-grid,
  .cards-3,
  .areas-grid,
  .steps-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero h1{font-size:38px}
  .section-title{font-size:30px}
  .profile-photo{height:420px}
}

@media (max-width:640px){
  .navbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero h1{font-size:32px}
  .hero p.lead{font-size:18px}
  .btn{width:100%}
  .hero-actions{flex-direction:column}
  .profile-photo{height:auto}
}
