/* === VARIABLES DE COLOR === */
:root{
  --primary-blue: #113880;
  --primary-dark: #0F1E33;
  --accent-gold: #ffd34e;
  --bg-light: #fbfdff;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 12px;
  --shadow-soft: 0 6px 18px rgba(17, 24, 39, 0.06);
}

/* === RESET & BASE === */
*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  font-family: 'Montserrat', sans-serif;
  background:var(--bg-light);
  color:#111827;
  -webkit-font-smoothing:antialiased;
}

/* === NAVBAR === */
.navbar-custom{
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(4px);
  padding: .6rem 1rem;
  box-shadow: 0 2px 8px rgba(16,24,40,0.04);
}
.img_logo{ height:46px; }

/* CTA */
.btn-cta{
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-weight:700;
  border-radius: 999px;
  padding: .7rem 1.6rem;
  box-shadow: 0 6px 18px rgba(255, 211, 78, 0.12);
  border:none;
}
.btn-cta:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(255, 211, 78, 0.18);
}

/* === HERO === */
.masthead_index{
  position: relative;
  min-height: 85vh;
  display:flex;
  align-items:center;
  background-image:url('brand/hero_v2.jpg');
  background-size:cover;
  background-position:center;
  color:var(--white);
}
.masthead_index .overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(17,56,128,0.78), rgba(10,33,77,0.88));
}
.hero-content{ position:relative; z-index:2; padding:6rem 1rem; }
.hero-title{
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight:800;
  letter-spacing:-0.02em;
}
.hero-sub{
  font-size:1.05rem;
  color:rgba(255,255,255,0.92);
  max-width:820px;
  margin:0 auto;
}

/* === ABOUT === */
.about-section{
  background: linear-gradient(180deg, rgba(17,56,128,1), rgba(10,33,77,1));
  color:#fff;
  padding:3.5rem 1rem;
  text-align:center;
}
.about-section h2{ color:var(--accent-gold); font-size:2rem; }

/* === CARDS === */
.feature-card{
  border-radius:14px;
  transition:.28s ease;
  border:none;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow:var(--shadow-soft);
}
.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 30px rgba(17,24,39,0.08);
}
.card-icon img{
  width:65px;
  height:65px;
  object-fit:contain;
}
.card-description{
  color:var(--muted);
}

/* === PROCESO EN 3 PASOS === */
.process-section{
  background:#ffffff;
}
.process-box{
  background:#fff;
  border-radius:14px;
  padding:2rem 1.2rem;
  box-shadow:var(--shadow-soft);
  transition:transform .25s ease;
}
.process-box:hover{
  transform:translateY(-6px);
}
.process-number{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  border-radius:50%;
  background:var(--accent-gold);
  color:#000;
  font-weight:700;
  font-size:1.2rem;
}
.candidatos-section {
  padding: 80px 0;
}

.candidatos-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.candidatos-section .section-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.requisitos-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.requisitos-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

/* === FOOTER === */
.footer{
  background:var(--primary-dark);
  color:#fff;
  padding:2.25rem 1rem;
}
.footer-link{ color:rgba(255,255,255,0.95); text-decoration:none; }
.footer-link:hover{ color:var(--accent-gold); }

/* === RESPONSIVE === */
@media (max-width: 575px){
  .hero-title{ font-size:1.6rem; }
  .hero-sub{ font-size:.95rem; }
  .feature-card{ padding:1rem; }
}
