/* Variables para una gestión centralizada y consistente */
:root {
  --color-paypath-blue: #002FBA;
  --color-text-dark: #333;
  --color-text-medium: #555;
  --color-text-light: #cfd8f1;
  --color-white: #ffffff;
  --color-linkedin-blue: #000000;
  --color-background-light: #f8f9fa;
  --font-heading: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  --font-body: Arial, sans-serif;
  --transition-fast: 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

body {
  background-color: var(--color-white);
  color: var(--color-text-dark);
}

/* Header */
.header {
  background-color: var(--color-white);
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-paypath-blue);
  font-family: var(--font-heading);
  margin-left: 170px;
}

.header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  margin-left: 50px;
}

.menu-izquierda,
.menu-derecha {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu-izquierda li a,
.menu-derecha li a {
  text-decoration: none;
  color: var(--color-linkedin-blue);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.menu-izquierda li a:hover,
.menu-derecha li a:hover {
  color: var(--color-paypath-blue);
}

.menu-derecha {
  gap: 15px;
  list-style: none;
  margin-right: 180px;
}

.menu-derecha li a {
  color: var(--color-linkedin-blue);
  text-decoration: none;
}

.icono {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Hero section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  background: linear-gradient(to right, #1B0DA1 100%, #0E077F 100%);
  min-height: 85vh;
  

  
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    background-image: url('03_Sitioweb_IMG/Imagen_gerente.png'); /* REEMPLAZA esta URL con la ruta a tu imagen */
    background-size: cover;
    background-position: center top;/* Alinea la imagen en la parte superior */
    background-repeat: no-repeat;
    min-height: 85vh;
    /* Opcional: añade un degradado oscuro sobre la imagen para que el texto sea más legible */
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 100, 0.2); */
}

.hero-text {
  max-width: 600px;
  margin-left: 150px;
  color: var(--color-white); /* Color de texto para el fondo oscuro */
}

.hero-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 3.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-link {
  text-decoration: none;
  color: var(--color-white);
  font-weight: bold;
  border-bottom: 1px solid var(--color-white);
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 300px;
  padding: 40px 50px;
  background-color: var(--color-background-light);
  color: var(--color-text-dark); /* Color de texto para este fondo */
}

.stat {
  text-align: center;
  flex: 0 0 auto;
}

.stat h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-paypath-blue);
  margin-bottom: 5px;
}

.stat p {
  font-size: 16px;
  color: var(--color-text-medium);
  margin: 0;
}

/* Nuestras soluciones */
.solutions {
  background-color: var(--color-white);
  padding: 60px 50px;
  text-align: center;
}

.solutions h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-paypath-blue);
  margin-bottom: 20px;
}

.solutions p {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Sección de Tarjetas de Soluciones */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 30px 50px;
  background-color: var(--color-background-light);
}

.card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 40px 30px; /* Incrementa el padding para dar más aire */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card h2 {
  font-size: 1.8rem;
  color: var(--color-paypath-blue);
  margin-bottom: 15px; /* Más espacio debajo del título */
}

.card p {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.5; /* Mejora la legibilidad */
  margin-bottom: 20px; /* Espacio extra al final del párrafo */
}

.contact-link {
  text-decoration: none;
  color: var(--color-linkedin-blue);
  font-weight: bold;
  position: relative;
  transition: color var(--transition-fast);
}

.contact-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-linkedin-blue);
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width var(--transition-fast);
}

.contact-link:hover {
  color: var(--color-paypath-blue);
}

.contact-link:hover::after {
  width: 100%;
  background: var(--color-paypath-blue);
}

/* Efecto hover */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Sección de Foros (tarjetas) */
.foro-compensaciones-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ancho mínimo ajustado */
  gap: 25px; /* Espacio moderado entre tarjetas */
  margin: 40px auto;
  max-width: 1400px; /* Ancho máximo para que no se extienda demasiado */
  padding: 0 50px;
}

.foro-comp-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 30px; /* Más padding para más aire */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex; /* Uso de flexbox para la estructura interna */
  flex-direction: column;
  justify-content: space-between; /* Empuja el enlace hacia abajo */
}

.foro-comp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.foro-comp-card h2 {
  font-size: 1.4rem; /* Título un poco más grande y legible */
  margin-bottom: 10px;
  color: var(--color-paypath-blue);
}

.foro-comp-card p {
  font-size: 1rem;
  color: var(--color-text-medium);
  line-height: 1.5;
  margin-bottom: 15px;
}

.foro-comp-link {
  text-decoration: none;
  color: var(--color-linkedin-blue);
  font-weight: bold;
  align-self: flex-start; /* Alinea el enlace a la izquierda */
  transition: color var(--transition-fast);
}

.foro-comp-link:hover {
  color: var(--color-paypath-blue);
  text-decoration: underline;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .solution-cards,
  .foro-compensaciones-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
}

/* Footer */
.footer {
  background-color: #0E077F;
  color: var(--color-white);
  padding: 40px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Logo izquierda */
.footer-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 1px;
}

.footer-info {
  display: flex;
  flex: 3;
  justify-content: space-around;
  gap: 50px;
}

.footer-links h3,
.footer-contact h3,
.footer-address h3 {
  font-size: 1rem;
  color: #00B0FF;
  margin-bottom: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all var(--transition-fast);
}

.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #00B0FF;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width var(--transition-fast);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact p,
.footer-address p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: #00B0FF;
}

.footer-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-socials a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter var(--transition-fast);
}

.footer-socials a:hover img {
  filter: brightness(0) invert(0.6);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 25px;
  color: var(--color-text-light);
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-credit {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-light);
}








/* Sección de Formulario de Contacto */
.contact-form-section {
    padding: 80px 5%;
    background-color: #f8f9fa; /* Color de fondo gris claro */
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #002FBA;
    margin-bottom: 10px;
}

.contact-form-section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-form-section .required-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: none;
    width: 100%;
}

.contact-form label {
    font-weight: 600;
    color: #003366;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #002FBA;
}

.contact-form textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button {
    background-color: #002FBA;
    color: #ffffff;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.form-submit button:hover {
    background-color: #004ee0;
    transform: translateY(-2px);
}

.privacy-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

.privacy-note a {
    color: #002FBA;
    font-weight: bold;
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

/* Responsivo para el formulario */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-row .form-group {
        margin-bottom: 20px;
    }
    .form-container {
        padding: 20px;
    }
}






/* Objetivos */
.objetivos {
  padding: 80px 10%;
  background-color: #f9fafc;
  text-align: center;
}

.objetivos h2 {
  font-size: 2.2rem;
  color: #2914C3;
  margin-bottom: 20px;
}

.objetivos h3 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  max-width: 850px;
  margin: 0 auto;
}





/* ===== Pilares ===== */
.pilares {
  padding: 80px 10%;
  background-color: #ffffff;
  text-align: center;
}

.pilares h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002FBA;
  margin-bottom: 50px;
}

.pilares-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pilar-card {
  background: #f9fafc;
  border: 1px solid #e0e6f6;
  border-radius: 14px;
  padding: 30px 25px;
  max-width: 350px;
  flex: 1 1 300px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.pilar-card h3 {
  font-size: 1.3rem;
  color: #002FBA;
  margin-bottom: 12px;
}

.pilar-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}










/* ===============================
   ESTILIOS ESTUDIOS SALARIALES
   =============================== */

/* Hero en dos columnas */
/* Hero en dos columnas */
.hero-estudios {
  background: linear-gradient(to right, #1B0DA1, #0E077F);
  color: #fff;
  padding: 120px 10%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-titulo h1 {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: left;
  padding-top: 50px; /* mueve el título hacia abajo */
}

/* Tarjeta de datos salariales */
.datos-salariales {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.datos-salariales:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Barra lateral azul */
.datos-salariales::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #00B0FF;
  border-radius: 6px 0 0 6px;
}

/* Flex para título al costado de lista */
.datos-flex {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.datos-titulo h2 {
  font-size: 2rem;
  color: #00B0FF;
  margin: 0;
  flex-shrink: 0;
  max-width: 220px;
  padding-top: 65px; /* mueve el título hacia abajo */
}

/* Lista de datos */
.datos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.datos-lista li {
  font-size: 1.05rem;
  font-weight: 400; /* Normal, sin negrita */
  line-height: 1.7;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.datos-lista li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00B0FF;
  font-size: 1rem;
  top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-estudios {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 6%;
  }

  .hero-titulo h1 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .datos-flex {
    flex-direction: column;
  }

  .datos-titulo h2 {
    margin-bottom: 20px;
    max-width: 100%;
  }
}


























/* ===============================
   CSS CORREGIDO PARA DESCRIPTIVOS
   =============================== */

/* HERO */
.hero-descriptivos {
  background: linear-gradient(to right, #1B0DA1, #0E077F);
  color: #fff;
  padding: 120px 10%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-titulo h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.datos-descriptivos {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  position: relative;
}

.datos-descriptivos::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #00B0FF;
  border-radius: 6px 0 0 6px;
  
}

.datos-flex {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}

.datos-titulo h2 {
  font-size: 1.8rem;
  color: #00B0FF;
  margin: 0;
  flex-shrink: 0;
  max-width: 220px;
  padding-top: 65px;
}

.datos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.datos-lista li {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.datos-lista li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00B0FF;
  font-size: 1rem;
  top: 2px;
}

.boton-flex {
  margin-top: 20px;
}

.btn-mas-info {
  display: inline-block;
  padding: 12px 25px;
  background: #00B0FF;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-mas-info:hover {
  background: #0085cc;
  transform: translateY(-2px);
}

/* OBJETIVOS */
.objetivos {
  background-color: #f9fafc;
  padding: 80px 10%;
  text-align: center;
}

.objetivos h2 {
  font-size: 2rem;
  color: #002FBA;
  margin-bottom: 25px;
  font-weight: 700;
}

.objetivos h3 {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
}

/* PILARES */
.pilares {
  background-color: #fff;
  padding: 80px 10%;
  text-align: center;
}

.pilares h2 {
  font-size: 2rem;
  color: #002FBA;
  margin-bottom: 50px;
}

.pilares-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pilar-card {
  background: #f9fafc;
  padding: 35px 28px;
  border-radius: 12px;
  max-width: 320px;
  flex: 1 1 280px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.pilar-card h3 {
  color: #002FBA;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.pilar-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* EXPERIENCIA */
.experiencia {
  background-color: #f9fafc;
  padding: 80px 10%;
  text-align: center;
}

.experiencia h2 {
  color: #002FBA;
  font-size: 2rem;
  margin-bottom: 60px;
  font-weight: 700;
}

.experiencia-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: #fff;
  border-left: 6px solid #002FBA;
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 420px;
  flex: 1 1 340px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.badge p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.badge p strong {
  color: #002FBA;
}

/* METODOLOGÍA */
.metodologia {
  background-color: #fff;
  padding: 80px 10%;
  text-align: center;
}

.metodologia h2 {
  color: #002FBA;
  font-size: 2rem;
  margin-bottom: 25px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #002FBA;
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.timeline-step .circle {
  min-width: 50px;
  min-height: 50px;
  background: #002FBA;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-step p {
  background: #f8f9fa;
  padding: 18px 22px;
  border-radius: 10px;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
  flex: 1;
}

/* RESPONSIVE */
@media (max-width:900px) {
  .hero-descriptivos { grid-template-columns: 1fr; padding: 80px 6%; text-align: center;}
  .hero-titulo h1 { font-size:2.4rem;}
  .datos-flex { flex-direction: column; gap:15px;}
  .datos-titulo h2 { padding-top:10px; max-width:100%;}
  .experiencia-badges { flex-direction: column; align-items: center;}
  .timeline-step { flex-direction: column; align-items: flex-start;}
  .timeline-step .circle { margin-bottom:12px;}
}
;




































/* ===== Experiencia ===== */
.experiencia {
  padding: 80px 10%;
  background-color: #f9fafc; /* Igual que objetivos */
  text-align: center;
}

.experiencia h2 {
  font-size: 2.2rem;
  color: #002FBA;
  margin-bottom: 60px;
  font-weight: 700;
}

.experiencia-badges {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.badge {
  background: #fff;
  border-left: 6px solid #002FBA;
  border-radius: 12px;
  padding: 35px 28px;
  max-width: 420px;
  flex: 1 1 340px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.badge p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  font-weight: 400;
  margin: 0;
}

.badge p strong {
  color: #002FBA;
  font-weight: 600;
}





/* Metodología */
.metodologia {
  padding: 80px 10%;
  background-color: #fff;
  text-align: center;
}

.metodologia h2 {
  font-size: 2rem;
  color: #002FBA;
  margin-bottom: 25px;
}

.timeline {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #002FBA;
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.timeline-step .circle {
  min-width: 55px;
  min-height: 55px;
  background: #002FBA;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.timeline-step p {
  background: #f8f9fa;
  padding: 18px 22px;
  border-radius: 10px;
  flex: 1;
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-estudios {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 70px 6%;
  }

  .hero-estudios h1 {
    text-align: center;
    font-size: 2.2rem;
  }

  .datos-salariales {
    margin-top: 30px;
  }

  .pilares-cards {
    flex-direction: column;
  }

  .experiencia-items {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-step .circle {
    margin-bottom: 12px;
  }
}






/* ============================= */
/*   ESTILOS RESPONSIVE COMPLETO */
/* ============================= */

/* Ajustes generales */
@media (max-width: 1024px) {
  body {
    padding: 0 15px;
  }

  .header nav ul {
    gap: 15px;
  }
}

/* ===== Tablets y pantallas medianas ===== */
@media (max-width: 992px) {
  .hero-descriptivos h1,
  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .pilares-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

/* ===== Celulares ===== */
@media (max-width: 768px) {
  /* Header */
  .header {
    flex-direction: column;
    text-align: center;
  }

  .header nav {
    flex-direction: column;
  }

  .header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Hero */
  .hero-descriptivos .hero-titulo h1,
  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 0 10px;
  }

  .datos-flex {
    flex-direction: column;
  }

  /* Objetivos */
  .objetivos h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .objetivos h3 {
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
  }

  /* Pilares */
  .pilares-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pilar-card {
    text-align: center;
    padding: 15px;
  }

  /* Experiencia (badges de 1,000+, 40+, 20+) */
  .experiencia-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .badge {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .badge h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .badge p {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Metodología */
  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .timeline-step {
    text-align: center;
    max-width: 300px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-logo-section,
  .footer-links,
  .footer-contact,
  .footer-address {
    margin: 10px 0;
  }
}

/* ===== Celulares muy pequeños ===== */
@media (max-width: 480px) {
  .hero-descriptivos h1,
  .hero h1 {
    font-size: 1.3rem;
  }

  .objetivos h2 {
    font-size: 1.2rem;
  }

  .objetivos h3 {
    font-size: 0.95rem;
  }

  .pilar-card h3 {
    font-size: 1.1rem;
  }

  .pilar-card p {
    font-size: 0.9rem;
  }

  .badge h3 {
    font-size: 1.5rem;
  }

  .badge p {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}


/* ============================= */
/*   FIX RESPONSIVE - EXPERIENCIA */
/* ============================= */
.experiencia-badges {
  display: flex;
  flex-wrap: wrap;   /* deja que los elementos bajen a la siguiente línea */
  justify-content: center;
  gap: 30px;         /* espacio entre los badges */
}

.badge {
  flex: 1 1 250px;   /* se adaptan al ancho, mínimo 250px */
  max-width: 300px;  /* no crecen demasiado */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .experiencia-badges {
    flex-direction: column; /* se apilan en columna */
    align-items: center;
  }

  .badge {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================= */
/*   FIX RESPONSIVE - STATS */
/* ============================= */
@media (max-width: 768px) {
  .stats {
    flex-direction: column; /* Cambia de fila a columna */
    gap: 20px; /* Menos espacio entre bloques */
    padding: 30px 20px;
  }

  .stat h2 {
    font-size: 28px; /* Ajusta tamaño del número */
  }

  .stat p {
    font-size: 14px; /* Ajusta tamaño del texto */
  }
}




/* MENÚ HORIZONTAL ÚNICO EN MÓVILES */
@media (max-width: 768px) {
  .header nav ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columnas iguales */
    gap: 10px; /* aumenta el espacio entre columnas */
    padding: 0 5px; /* margen izquierdo y derecho general */
    margin: 0 auto;
    list-style: none;
    width: 100%;
    max-width: 600px; 
  }

  .header nav ul li {
    text-align: center;
  }

  .header nav ul li a {
    display: block;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-linkedin-blue);
    transition: color var(--transition-fast);
  }

  .header nav ul li a:hover {
    color: var(--color-paypath-blue);
  }

  /* Mueve los primeros 3 elementos un poco desde el margen izquierdo */
  .header nav ul li:nth-child(-n+3) a {
    padding-left: 10px; 
  }

  /* Mueve los últimos 3 elementos un poco desde el margen derecho */
  .header nav ul li:nth-child(n+4) a {
    padding-right: 10px;
  }
}





@media (max-width: 768px) {
  /* Centrar logo solo en móviles */
  .header .logo {
    margin: 0 auto;       /* centra horizontalmente */
    display: block;       /* asegura que el margin:auto funcione */
    text-align: center;   /* por si hay texto interno */
  }
}





/* Centrar hero-text solo en móviles */

@media (max-width: 768px) {
  /* Solo aumenta tamaño del subtítulo en móviles */
  .hero-text h1 {
    font-size: 2.8rem; /* Ajusta este valor según lo necesites */
    text-align: left;  /* Mantiene alineado al margen izquierdo */
  }

  /* Mantener todo el bloque alineado a la izquierda */
  .hero-text {
    margin-left: 0;
    text-align: left;
  }
}



/* ===== Footer consistente en móviles (todas las páginas) ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;       /* Mantener en fila */
    flex-wrap: wrap;           /* Ajusta si no caben */
    justify-content: space-between;
    align-items: flex-start;   /* Alinea al inicio verticalmente */
    text-align: left;          /* Igual que desktop */
    gap: 20px;
  }

  .footer-logo-section,
  .footer-links,
  .footer-contact,
  .footer-address {
    margin: 0;                 /* Elimina márgenes verticales que apilan */
    flex: 1 1 auto;            /* Ancho flexible para adaptarse */
  }

  /* Ajustes de tamaño para que no se salgan en pantallas muy pequeñas */
  .footer-logo-section { flex: 1 1 120px; }
  .footer-links { flex: 1 1 150px; }
  .footer-contact { flex: 1 1 150px; }
  .footer-address { flex: 1 1 150px; }

  /* Centrar el footer-bottom debajo si es necesario */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
  }
}




/* ============================= */
/* FOOTER UNIFICADO PARA TODAS LAS PÁGINAS */
/* ============================= */
.footer {
  background-color: #0E077F;
  color: var(--color-white);
  padding: 40px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 1px;
}

.footer-info {
  display: flex;
  flex: 3;
  justify-content: space-around;
  gap: 50px;
}

.footer-links h3,
.footer-contact h3,
.footer-address h3 {
  font-size: 1rem;
  color: #00B0FF;
  margin-bottom: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.2s ease;
}

.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #00B0FF;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.2s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact p,
.footer-address p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #00B0FF;
}

.footer-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-socials a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.footer-socials a:hover img {
  filter: brightness(0) invert(0.6);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 25px;
  color: var(--color-text-light);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-logo-section,
  .footer-links,
  .footer-contact,
  .footer-address {
    margin: 10px 0;
  }

  .footer-socials {
    justify-content: center;
  }
}





/* Diagnóstico y elaboración de perfiles de Puestos”  */
/* ============================= */
/* Ajuste de <h1> solo en móviles */
/* ============================= */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem !important; /* cambia el tamaño según lo necesites */
    line-height: 1.3;
    text-align: center; /* opcional, si lo quieres centrado en móviles */
  }
}



/* ============================= */
/* Ajuste de tarjetas solo en móviles */
/* ============================= */
@media (max-width: 768px) {
  .card {
    padding: 15px;         /* reduce el espacio interno */
    font-size: 0.9rem;     /* hace el texto un poco más pequeño */
    max-width: 90%;        /* que no se vean tan anchas */
    margin: 10px auto;     /* centradas y con menos separación */
  }

  .card h3 {
    font-size: 1.2rem;     /* títulos un poco más pequeños */
  }

  .card p {
    font-size: 0.9rem;     /* párrafos más compactos */
    line-height: 1.4;      /* mejor legibilidad */
  }
}



@media (max-width: 768px) {
  .experiencia-badges {
    max-width: 90%;   /* reduce el ancho */
    margin: 0 auto;   /* centra las cajas */
    padding: 10px;    /* menos espacio interno = caja más pequeña */
  }

  .experiencia-badges .badge {
    padding: 12px;    /* ajusta espacio dentro de cada badge */
    max-height: 140px; /* controla largo máximo */
  }
}



















@media (max-width: 768px) {
  .timeline-step {
    display: flex;
    align-items: center;      /* alinea círculo y texto al centro vertical */
    gap: 12px;                /* espacio entre círculo y texto */
    margin-bottom: 15px;
  }

  .timeline-step .circle {
    flex-shrink: 0;
    margin: 0;
  }

  .timeline-step p {
    flex: 1;                  /* texto ocupa espacio restante */
    margin: 0;
    font-size: 14px;          /* texto más compacto */
    line-height: 1.4;         /* mejor legibilidad */
    max-width: 85%;           /* evita que la caja sea muy larga */
  }
}














