body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #333;
  background-color: #fff;
}

/* =========================
   HEADER
========================= */

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 35px 80px;
  background: transparent;
  position: relative;
  z-index: 100;
}

/* Logo KONVEXA */
.logo-overlap {
  position: absolute;
  left: 70px;
  top: 40px; /* lo baja un poco para separarlo del texto */
  width: 280px; /* antes 380px, más equilibrado */
  z-index: 1; /* mantiene el texto encima */
  opacity: 0.9; /* efecto suave */
}

.logo-overlap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Menú */
nav {
  margin-left: auto;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 45px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #1f2235;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
  position: relative;
}

nav ul li a:hover {
  color: #ffffff;
}

/* Botón contacto */
nav ul li:last-child a {
  background: #ffffff;
  padding: 12px 28px;
  border-radius: 40px;
  color: #e91e63;
  font-weight: 700;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px 90px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Texto */
.hero-text {
  width: 50%;
  position: relative;
  z-index: 5;
  padding-top: 170px;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  color: #1f2235;
  margin-bottom: 25px;
  font-weight: 800;
  max-width: 580px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 35px;
  max-width: 520px;
  line-height: 1.7;
}

/* Botón */
.btn-primary {
  background: linear-gradient(to right, #ef5b93, #d93d7a);
  color: white;
  padding: 18px 38px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.25);
  transition: 0.3s;
  position: relative;
  z-index: 5;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* Imagen ejecutivo */
.hero-image img {
  width: 88%;
  max-width: 430px;
  object-fit: contain;
}

/* Por que elegirnos */
.why-us {
  background: #fff;
  text-align: center;
  padding: 50px 40px; /* menos padding arriba */
}

.why-us h2 {
  display: inline-block;
  background-color: #ffffff; /* fondito rosado */
  color: #e91e63;
  padding: 8px 20px;
  border-radius: 8px;
  margin-bottom: 15px; /* menos espacio debajo del título */
  font-weight: 750;
}

.why-us .subtitle {
  font-size: 2.2rem; /* un poco más pequeño */
  margin-bottom: 8px; /* menos separación */
}

.why-us .subtitle strong {
  font-weight: 750;
  color: #333;
}

.why-us .subtitle .highlight {
  color: #e91e63;
  font-weight: 700;
}

.why-us p {
  color: #555;
  margin-bottom: 15px; /* menos espacio debajo */
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
}

.benefit {
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

/* Imágenes verticales */
.benefit img {
  width: 100%;
  max-width: 220px; /* controla el ancho */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Títulos y texto */
.benefit h3 {
  color: #e91e63;
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.benefit p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

/* =========================
    NUESTROS SERVICIOS  
=========================*/
.servicios {
  background-color: #fff;
  text-align: center;
  padding: 50px 30px;
}

.titulo-seccion {
  font-size: 1.5rem;
  color: #e91e63;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.subtitulo-seccion {
  font-size: 2.2rem;
  font-weight: 750;
  color: #333;
  margin-bottom: 10px;
}

.subtitulo-seccion .rosa {
  color: #000000;
  font-weight: 750;
}

.descripcion-seccion {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.servicio {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.servicio:hover {
  transform: translateY(-5px);
}

.servicio img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.contenido-servicio {
  padding: 20px;
  text-align: left;
}

.icono-servicio {
  font-size: 1.8rem;
  color: #e91e63;
  margin-bottom: 10px;
}

.contenido-servicio h3 {
  color: #e91e63;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contenido-servicio p {
  color: #555;
  margin-bottom: 10px;
}

.contenido-servicio ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.contenido-servicio ul li {
  color: #555;
  margin-bottom: 6px;
}

.linea-rosa {
  width: 50px;
  height: 3px;
  background-color: #e91e63;
  margin: 0 auto;
  border-radius: 2px;
}

 /* =========================
   BENEFICIOS ADICIONALES
========================= */

.extra-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1150px;
  margin: 70px auto;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}

/* Cada bloque */
.extra-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 18px;
  position: relative;
}

/* Línea divisora elegante */
.extra-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px;
  height: 50%;
  background: rgba(0,0,0,0.15);
}

/* Íconos */
.extra-benefit img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -10px;
}

/* Texto */
.extra-benefit .text {
  text-align: left;
}

.extra-benefit h3 {
  color: #e91e63;
  font-size: 1.25rem;
  line-height: 1.15;
  margin: 0 0 8px;
  font-weight: 700;
}

.extra-benefit p {
  color: #333;
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

/* Ver mas*/
.btn-container {
  text-align: center; /* centra el botón horizontalmente */
  margin-top: 20px;
}

.btn-secondary {
  background-color: #ffffff;
  border: 2px solid #e91e63;
  color: #e91e63;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.feature img {
  width: 100px;   /* tamaño uniforme */
  height: auto;
  margin-bottom: 15px;
}

/* Footer */ /* Footer */
.cta-footer {
  text-align: center;
  padding: 80px 40px;
  color: #0c0101;

  background:
    linear-gradient(rgba(26, 25, 25, 0), rgba(233, 30, 98, 0)),
    url("footer-bg.jpg") no-repeat center center;

  background-size: cover;

  /* Curvatura arriba */
  clip-path: ellipse(100% 100% at 50% 100%);
}

.cta-footer h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* Certificación CIE */

.cie-certificacion {
  text-align: center;
  padding: 50px 20px;
}

.cie-certificacion img {
  width: 140px;
  height: auto;
  margin-bottom: 15px;
}

.cie-certificacion h3 {
  color: #e91e63;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.cie-certificacion p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column; /* apila logo y menú */
    align-items: center;
    padding: 20px;
  }

  .logo-overlap {
    position: static; /* quita posición absoluta */
    width: 250px;     /* logo más pequeño */
    margin-bottom: 15px;
  }

  nav {
    margin-left: 0;
  }

  nav ul {
    flex-direction: row;   /* menú horizontal */
    flex-wrap: wrap;       /* se acomoda si no cabe */
    gap: 20px;
    justify-content: center;
  }

  nav ul li a {
    font-size: 0.9rem; /* texto más pequeño */
  }
}

/* Móviles */
@media (max-width: 600px) {
  .logo-overlap {
    width: 200px; /* logo aún más pequeño */
  }

  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  nav ul li a {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr); /* dos columnas en tablet */
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* una columna en móvil */
  }
}

@media (max-width: 600px) {
  .cta-footer {
    clip-path: none; /* elimina curvatura */
    padding: 40px 20px; /* menos padding */
  }

  .cta-footer h2 {
    font-size: 1.2rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;   /* apila texto e imagen */
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text {
    width: 100%;
    padding-top: 80px;
  }

  .hero-text h1 {
    font-size: 2.2rem;   /* más pequeño en tablet */
    max-width: 100%;
  }

  .hero-text p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-image img {
    width: 70%;          /* más grande en tablet */
    margin-top: 30px;
  }
}

/* Móviles */
@media (max-width: 600px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
  }

  .hero-text {
    width: 100%;
    padding-top: 40px;
  }

  .hero-text h1 {
    font-size: 1.6rem;   /* reduce aún más el título */
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 0.95rem;  /* texto más compacto */
    line-height: 1.5;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-image img {
    width: 85%;          /* imagen más protagonista */
    max-width: 320px;
    margin-top: 25px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .extra-benefits {
    grid-template-columns: repeat(2, 1fr); /* dos columnas en tablet */
  }
}

/* Móviles */
@media (max-width: 600px) {
  .extra-benefits {
    display: flex;              /* fila horizontal */
    overflow-x: auto;           /* scroll horizontal */
    gap: 15px;
    padding: 20px;
    scroll-snap-type: x mandatory; /* efecto de “snap” al deslizar */
  }

  .extra-benefit {
    flex: 0 0 80%;              /* cada bloque ocupa 80% del ancho */
    scroll-snap-align: center;  /* se centra al deslizar */
    flex-direction: column;     /* imagen arriba, texto abajo */
    align-items: center;
    text-align: center;
    border-right: none;         /* quita línea divisoria */
    border-bottom: 1px solid rgba(0,0,0,0.15);
  }

  .extra-benefit img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
  }
}

 /* =========================
   SECCIÓN NOSOTROS
========================= */

/* Logo */
.logo {
  position: absolute;
  left: 40px;       /* lo coloca en la esquina izquierda */
  top: 25px;        /* ajusta verticalmente */
}

.logo img {
  width: 180px;     /* tamaño visible pero equilibrado */
  height: auto;
  display: block;
}

.about {
  font-family: 'Manrope', sans-serif;
  background-color: #fff;
  padding: 80px 60px;
}

/* Contenedor general */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Texto a la izquierda */
.about-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.about-title {
  color: #e91e63;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-subtitle {
  color: #1f2235;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Línea decorativa rosa */
.line {
  width: 50px;
  height: 3px;
  background-color: #e91e63;
  margin-bottom: 25px;
  border-radius: 2px;
}

/* Párrafo */
.about-text p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Imagen a la derecha */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 520px; /* más amplia */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* Nuestra Esencia */
.about-essence {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
}

/* Títulos principales */
.section-title {
  color: #e91e63;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.about-essence h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2235;
  margin-bottom: 15px;
}

.essence-text {
  color: #555;
  margin-bottom: 50px;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Tarjetas Misión, Visión y Valores */
.essence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.essence-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.essence-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Línea rosa debajo de cada título */
.line {
  width: 50px;
  height: 3px;
  background-color: #e91e63;
  margin: 10px auto 20px;
  border-radius: 2px;
}

/* Títulos de las tarjetas */
.essence-card h3 {
  color: #1f2235;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Texto y lista */
.essence-card p,
.essence-card ul {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.essence-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.essence-card ul li {
  margin-bottom: 6px;
}

/* Sección de estadísticas */

/* Frase superior con fondo blanco */
.stats-header {
  background-color: #fff; /* fondo blanco */
  color: #111827; /* texto oscuro */
  padding: 30px 40px;
  border-radius: 10px 10px 0 0; /* bordes superiores redondeados */
  display: flex; /* coloca el icono y texto en la misma línea */
  align-items: center; /* centra verticalmente */
  justify-content: center; /* centra horizontalmente */
  gap: 15px; /* espacio entre icono y texto */
  text-align: left; /* texto alineado a la izquierda */
}

.stats-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.stats-header p {
  font-size: 1.1rem;
  color: #111827;
  line-height: 1.6;
  margin: 0; /* elimina espacio extra */
}

.stats-header .highlight {
  color: #e91e63; /* rosa corporativo */
  font-weight: 600;
}

/* Cuadrícula de estadísticas */
.about-stats {
  background-color: #0b1220; /* azul oscuro */
  color: #fff;
  padding: 20px 40px 40px;
  border-radius: 0 0 10px 10px; /* bordes inferiores redondeados */
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  border-top: 1px solid #1e293b;
  padding-top: 30px;
}

.stat {
  text-align: center;
  position: relative;
}

.stat img {
  width: 40px;
  margin-bottom: 15px;
}

.stat h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* Líneas divisorias */
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #1e293b;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets (pantallas menores a 992px) */
@media (max-width: 992px) {
  .about {
    padding: 60px 40px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image img {
    max-width: 400px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 2.2rem;
  }

  .stats-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .stats-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Celulares (pantallas menores a 768px) */
@media (max-width: 768px) {
  .logo {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }

  .logo img {
    width: 140px;
  }

  .about {
    padding: 40px 20px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-subtitle {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 320px;
  }

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

  .stats-header {
    padding: 20px;
  }

  .stats-icon img {
    width: 60px;
    height: 60px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat h3 {
    font-size: 1.5rem;
  }

  .stat-title {
    font-size: 0.95rem;
  }

  .stat-text {
    font-size: 0.9rem;
  }
}

/* Celulares pequeños (menores a 480px) */
@media (max-width: 480px) {
  .about-subtitle {
    font-size: 1.6rem;
  }

  .about-title {
    font-size: 1.4rem;
  }

  .stats-icon img {
    width: 50px;
    height: 50px;
  }

  .stats-header p {
    font-size: 0.95rem;
  }

  .stat h3 {
    font-size: 1.3rem;
  }

  .stat-text {
    font-size: 0.85rem;
  }
}

/* Estadísticas en horizontal para móviles */
@media (max-width: 768px) {
  .stats-grid {
    display: flex;              /* cambia de grid a flex */
    flex-direction: row;        /* en fila horizontal */
    overflow-x: auto;           /* scroll lateral */
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory; /* efecto de snap */
  }

  .stat {
    flex: 0 0 220px;            /* ancho fijo para cada tarjeta */
    scroll-snap-align: start;   /* se alinea al inicio al hacer scroll */
    background-color: #0b1220;  /* mantiene fondo azul */
    border-radius: 8px;
    padding: 15px;
  }

  .stat img {
    width: 50px;
    height: 50px;
  }

  .stat h3 {
    font-size: 1.4rem;
  }

  .stat-text {
    font-size: 0.9rem;
  }

  /* Ocultar las líneas divisorias en móviles */
  .stat:not(:last-child)::after {
    display: none;
  }
}

/* =========================
   SEGUNDA -SECCION SERVICIOS
========================= */
.navbar {
  background-color: #0b1220; /* azul oscuro */
  padding: 15px 40px;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar nav ul li a {
  color: #fff; /* texto blanco */
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar nav ul li a:hover,
.navbar nav ul li a.active {
  color: #e91e63; /* rosa corporativo */
}

/* =========================
   SECCIÓN SERVICIOS
========================= */
.services {
  background-color: #fff; /* fondo blanco */
  padding: 60px 40px;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b1220; /* azul oscuro */
  margin-bottom: 10px;
}

.services .subtitle {
  font-size: 1.2rem;
  color: #e91e63; /* rosa corporativo */
  margin-bottom: 40px;
}

/* Grid horizontal de servicios */
.service-grid {
  display: flex;              /* horizontal */
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;            /* permite que se acomoden si no caben */
}

.service-box {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 25px;
  width: 260px;               /* ancho fijo para horizontal */
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.service-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e91e63; /* rosa */
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* =========================
   ESTADÍSTICAS
========================= */
.service-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-stats .stat {
  background-color: #0b1220; /* azul oscuro */
  color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  text-align: center;
  flex: 0 0 250px;
}

.service-stats .stat h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e91e63; /* rosa */
}

/* =========================
   FOOTER
========================= */
.footer {
  background-color: #0b1220;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer p {
  margin: 5px 0;
  font-size: 0.95rem;
}


/* =========================
   TERCERA -SECCION BLOG 
========================= */
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

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

/* =========================
   HEADER
========================= */
header {
  background-color: #0b1220; /* azul oscuro */
  padding: 15px 40px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 80px; /* antes 60px */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #e91e63; /* rosa corporativo */
}

/* =========================
   HERO BLOG
========================= */
.hero-blog {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff; /* fondo blanco */
  color: #111827; /* texto oscuro */
}

.hero-blog h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #e91e63; /* rosa corporativo */
}

.hero-blog p {
  font-size: 1.2rem;
  color: #111827; /* texto negro */
}

/* =========================
   BLOG GRID
========================= */
.blog-grid {
  display: flex; /* horizontal */
  justify-content: center;
  gap: 30px;
  padding: 60px 40px;
  flex-wrap: wrap; /* permite que se acomoden si no caben */
}

.blog-post {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 300px;
  flex: 0 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-post h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b1220;
  margin: 15px;
}

.blog-post p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 15px 20px;
  line-height: 1.6;
}

.btn-secondary {
  display: inline-block;
  margin: 0 15px 20px;
  padding: 10px 20px;
  background-color: #e91e63;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #c2185b;
}

/* =========================
   FOOTER CTA
========================= */
.cta-footer {
  text-align: center;
  padding: 50px 20px;
  background-color: #0b1220;
  color: #fff;
}

.cta-footer h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000000;
}

.btn-primary {
  padding: 12px 25px;
  background-color: #e91e63;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #c2185b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .blog-grid {
    gap: 20px;
  }
  .blog-post {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    flex-direction: column; /* vertical en móviles */
    align-items: center;
  }
  .blog-post {
    width: 90%;
    max-width: 400px;
  }
}

/* =========================
   HEADER (igual que Blog)
========================= */
header {
  background-color: #0b1220; /* azul oscuro */
  padding: 15px 40px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #fff; /* texto blanco */
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #e91e63; /* rosa corporativo */
}

/* =========================
   CUARTA SECCIÓN PRIVACIDAD
========================= */
.privacidad {
  background-color: #fff; /* fondo blanco */
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.privacidad h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1220; /* azul oscuro */
  margin-bottom: 20px;
}

.privacidad h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e91e63; /* rosa */
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacidad p,
.privacidad ul {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.privacidad ul {
  padding-left: 20px;
  list-style: disc;
}

/* =========================
   FOOTER PRIVACIDAD
========================= */
.footer-privacidad {
  background-color: #0b1220; /* Azul fuerte */
  color: #ffffff; /* Texto blanco */
  text-align: center;
  padding: 30px 20px;
}

.footer-privacidad .copy {
  font-size: 0.95rem;
  color: #ffffff; /* Asegura que el texto sea blanco */
}

.footer-privacidad .privacidad-link {
  color: #e91e63; /* Rosa Konvexa */
  font-weight: 600;
  text-decoration: none;
}

.footer-privacidad .privacidad-link:hover {
  text-decoration: underline;
}

/* =========================
   QUINTA SECCION CONTACTO 
========================= */
header {
  background-color: #0b1220; /* azul oscuro */
  padding: 15px 40px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #fff; /* texto blanco */
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #e91e63; /* rosa corporativo */
}

/* =========================
   SECCIÓN CONTACTO
========================= */
.contacto {
  background-color: #fff; /* fondo blanco */
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contacto h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1220; /* azul oscuro */
  margin-bottom: 15px;
}

.contacto p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Información de contacto */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.info-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-box h3 {
  color: #e91e63; /* rosa */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-box p a {
  color: #0b1220; /* azul */
  font-weight: 600;
}

/* Formulario */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-secondary {
  background-color: #e91e63;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #c2185b;
}

/* =========================
   FOOTER CONTACTO
========================= */
.footer-contacto {
  background-color: #0b1220;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer-contacto .footer-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-contacto a {
  color: #e91e63;
  font-weight: 600;
}

.footer-contacto .copy {
  margin-top: 15px;
  font-size: 
  0.95rem;
}

/* =========================
   FOOTER REDES SOCIALES
========================= */

.redes-premium-footer {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.redes-premium-footer a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* Instagram */
.redes-premium-footer a:nth-child(1) {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

/* Facebook */
.redes-premium-footer a:nth-child(2) {
  background: #1877F2;
}

/* LinkedIn */
.redes-premium-footer a:nth-child(3) {
  background: #0A66C2;
}

/* WhatsApp */
.redes-premium-footer .wa {
  background: #25D366;
}

/* Hover elegante */
.redes-premium-footer a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}