/* =============================================
   FONDECAP — style.css
   Mobile First | Pure HTML5 + CSS3
   ============================================= */

/* ----- Variables ----- */
:root {
  --red: #d2292a;
  --red-light: rgba(210, 41, 42, 0.1);
  --dark: #1a1a1a;
  --gray: #808080;
  --gray-light: rgba(128, 128, 128, 0.1);
  --white: #ffffff;
  --bg-gray: #f5f6f8;
  --text-body: #4a4a4a;
  --text-muted: #6b7280;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(30, 58, 95, 0.12);
  --shadow-hover: 0 8px 30px rgba(30, 58, 95, 0.18);
  --font: "Montserrat", sans-serif;
  --nav-h: 64px;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.14);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-brand-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  max-width: 180px;
}

/* Desktop links */
.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #f0f0f0;
  padding: 8px 20px 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--red);
}

/* Tablet+ */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .nav-brand-text {
    max-width: 260px;
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%),
    url("img/inicio.png") center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(26, 26, 26, 0.25),
    rgba(26, 26, 26, 0.15)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.92;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-stats {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  opacity: 0.85;
  font-size: 0.85rem;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* =============================================
   BOTONES
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(210, 41, 42, 0.35);
  transition:
    opacity 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.92;
  box-shadow: 0 8px 24px rgba(210, 41, 42, 0.45);
  transform: translateY(-1px);
}

.btn-primary.btn-sm {
  font-size: 0.85rem;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border-radius: 999px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-pulse {
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 72px 20px;
}

.section-white {
  background: var(--white);
}
.section-gray {
  background: var(--bg-gray);
}
.section-light {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.section-dark {
  background: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.light .section-title {
  color: var(--white);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-top: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 0.95rem;
}

.section-subtitle.light-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* Tags */
.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag-red {
  background: var(--red-light);
  color: var(--red);
}
.tag-gray {
  background: var(--gray-light);
  color: var(--gray);
}
.tag-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* =============================================
   CARDS (base)
   ============================================= */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =============================================
   GRIDS
   ============================================= */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   SOBRE EL PROGRAMA
   ============================================= */
.about-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.about-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
}

/* ===== SECCIÓN RESULTADOS ===== */
.section-resultados {
  background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 60%, #1a472a 100%);
  padding: 48px 0;
  border-top: 4px solid #52b788;
  border-bottom: 4px solid #52b788;
}
.resultados-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.resultados-left {
  flex: 1;
  min-width: 260px;
}
.resultados-badge {
  display: inline-block;
  background: rgba(82, 183, 136, 0.2);
  color: #74c69d;
  border: 1px solid #52b788;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}
.resultados-title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 10px;
}
.resultados-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
.resultados-right {
  flex-shrink: 0;
}
.btn-resultados {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #52b788;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 6px 20px rgba(82, 183, 136, 0.4);
}
.btn-resultados:hover {
  background: #40916c;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .resultados-inner {
    flex-direction: column;
    text-align: center;
  }
  .resultados-title {
    font-size: 22px;
  }
  .btn-resultados {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   BENEFICIOS
   ============================================= */
.benefit-card {
  padding: 28px;
  border: 1px solid #f0f0f0;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}

.benefit-card:hover {
  border-color: rgba(210, 41, 42, 0.25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.25s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.icon-red {
  background: var(--red-light);
  color: var(--red);
}
.icon-gray {
  background: var(--gray-light);
  color: var(--gray);
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.benefit-desc strong {
  color: var(--red);
}

/* =============================================
   CARRERAS
   ============================================= */
.career-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.career-header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-gray {
  background: linear-gradient(135deg, #808080, #aaa);
}
.career-red {
  background: linear-gradient(135deg, var(--red), #ff6b5a);
}
.career-mixed {
  background: linear-gradient(135deg, #808080, var(--red));
}

.career-body {
  padding: 22px;
}

.career-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.ctag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.ctag-gray {
  background: #f3f4f6;
  color: var(--gray);
}
.ctag-red {
  background: #fff1f1;
  color: var(--red);
}

.career-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =============================================
   REQUISITOS
   ============================================= */
.requisitos-card {
  padding: 36px 32px;
  border: 1px solid #f0f0f0;
}

.requisitos-intro {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.6;
}

.requisitos-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.requisitos-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.55;
}

.req-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   PORTAL DE POSTULACIÓN (PASOS)
   ============================================= */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid #f0f0f0;
}

.step-left-red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  border-radius: 4px 0 0 4px;
}

.step-left-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #555;
  border-radius: 4px 0 0 4px;
}

.step-inactive {
  opacity: 0.75;
}

.step-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.step-num-red {
  background: var(--red);
}
.step-num-dark {
  background: var(--dark);
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.badge-status {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-active {
  background: #dcfce7;
  color: #15803d;
}
.badge-pending {
  background: #f3f4f6;
  color: #6b7280;
}

.step-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.step-docs {
  background: #f9fafb;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 18px;
}

.docs-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.docs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.docs-grid-1 {
  grid-template-columns: 1fr;
}

.docs-grid li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.check-green {
  color: #22c55e;
  font-weight: 700;
}

.step-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 480px) {
  .step-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.step-note {
  background: #f9fafb;
  border-left: 4px solid var(--dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-note strong {
  font-weight: 700;
}

/* =============================================
   CAMINO AL ÉXITO (TIMELINE)
   ============================================= */
.timeline-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid #f0f0f0;
  background: linear-gradient(to bottom right, #f8fafc, #fff);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tl-red {
  background: linear-gradient(to bottom right, #fff1f1, #fff);
  border-color: #fde8e8;
}
.tl-green {
  background: linear-gradient(to bottom right, #f0fdf4, #fff);
  border-color: #dcfce7;
}

.tl-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.tl-gradient {
  background: linear-gradient(135deg, var(--dark), var(--red));
}

.tl-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.tl-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 20px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.65);
}

/* =============================================
   PORTAL DE POSTULACIÓN
   ============================================= */
.fase-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.fase-number {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.fase-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.fase-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.postulacion-grid {
  gap: 20px;
}

.post-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.post-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-num {
  width: 30px;
  height: 30px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.post-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.post-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.post-docs {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  flex: 1;
}

.post-docs .docs-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.post-docs ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.post-docs ul li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.plazo-bar {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.plazo-bar strong {
  color: var(--white);
}

.fase-info-bar {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.fase-info-bar strong {
  color: var(--white);
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-brand-text {
  padding: 0;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid #fff;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--dark);
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 480px) {
  .section {
    padding: 52px 16px;
  }
  .hero {
    padding: 64px 16px;
  }
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .step-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .requisitos-card {
    padding: 24px 18px;
  }
}

@media (min-width: 1024px) {
  .about-card {
    padding: 48px;
  }
}

@media (max-width: 640px) {
  .about-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* =============================================
   BTN CAREER INFO
   ============================================= */
.btn-career-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 9px 16px;
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.btn-career-info:hover {
  background: var(--red);
  color: var(--white);
}

/* =============================================
   BTN RESULTADOS FASE
   ============================================= */
.btn-resultados-fase {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #52b788;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 6px 20px rgba(82, 183, 136, 0.3);
}
.btn-resultados-fase:hover {
  background: #40916c;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .btn-resultados-fase {
    width: 100%;
    justify-content: center;
  }
}
