:root{
  --azul:#0B3C5D;
  --verde:#1DBF73;
  --verde2:#159A5C;
  --fondo:#F5F9FC;
  --muted:#4B6475;
  --border:#e8eef5;
  --shadow:0 12px 30px rgba(0,0,0,.08);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Montserrat, Arial, sans-serif}
body{background:var(--fondo);color:var(--azul)}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.d-container{max-width:1100px;margin:0 auto;padding:18px}

/* ===== HEADER ===== */
.d-header{
  background:#fff;
  border-bottom:1px solid #e8eef5;
  position:sticky;
  top:0;
  z-index:100;
}

.d-container{
  max-width:1200px;
  margin:auto;
  padding:18px 20px;
}

.d-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.d-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.d-logo{
  height:55px;
}

.d-brand__name{
  font-weight:900;
  font-size:18px;
}

.d-brand__tag{
  font-size:12px;
  color:#4B6475;
  font-weight:700;
  margin-top:4px;
}

/* ===== NAV ===== */
.d-nav{
  display:flex;
  align-items:center;
  gap:20px;              /* separación entre links */
}

.d-nav a{
  font-weight:800;
  color:#0B3C5D;
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  transition:.2s;
}

.d-nav a:hover{
  background:rgba(11,60,93,.06);
}

/* ===== BOTÓN ===== */
.d-btn{
  background:linear-gradient(180deg,#1DBF73,#159A5C);
  color:#fff !important;
  border:none;
  padding:10px 18px;
  border-radius:30px;
  font-weight:900;
  text-decoration:none;
}

.d-btn:hover{
  transform:translateY(-1px);
}


/* BOTONES */
.d-btn{
  background:linear-gradient(180deg, var(--verde), var(--verde2));
  color:#fff;
  border:none;
  padding:10px 16px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.d-btn:hover{transform:translateY(-1px)}
.d-btn--ghost{
  background:transparent;
  color:var(--azul);
  border:2px solid rgba(29,191,115,.35);
}
.d-btn--ghost:hover{background:rgba(29,191,115,.08)}
.d-btn--lg{padding:12px 18px;font-size:15px}

/* SECCIÓN PERFIL */
.d-section{padding:34px 0}
.d-profile{display:grid;grid-template-columns:380px 1fr;gap:18px;align-items:start}

/* CARD IZQUIERDA */
.d-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
  text-align:center;
}
.d-photo{width:100%;height:360px;object-fit:cover;border-radius:14px}
.d-name{margin:14px 0 6px;font-size:26px;letter-spacing:-.02em}
.d-role{margin:0 0 12px;color:var(--muted);font-weight:800}
.d-actions{display:flex;flex-direction:column;gap:10px;margin-top:10px}

/* PANEL DERECHO */
.d-panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.d-panel h2{margin:0 0 10px}
.d-text{margin:0 0 18px;color:var(--muted);font-weight:600;line-height:1.7}

.d-list{margin:0 0 18px 18px;color:var(--azul);font-weight:800}
.d-chips{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}
.d-chip{
  background:rgba(29,191,115,.12);
  border:1px solid rgba(11,60,93,.12);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
}

/* CTA */
.d-cta{
  background:var(--azul);
  border-radius:var(--radius);
  padding:16px;
  color:#fff;
}
.d-cta h3{margin:0 0 8px}
.d-cta p{margin:0 0 12px;color:rgba(255,255,255,.85);font-weight:600;line-height:1.6}

/* FOOTER */
.d-footer{
  background:#fff;
  border-top:1px solid var(--border);
  text-align:center;
  padding:20px;
  color:var(--muted);
  font-weight:800;
}

/* FLOAT WA */
.d-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, var(--verde), var(--verde2));
  box-shadow:0 14px 28px rgba(29,191,115,.35);
}

/* RESPONSIVE */
@media(max-width:900px){
  .d-profile{grid-template-columns:1fr}
  .d-photo{height:320px}
}
