body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: #003366;
}
/* === HEADER FIX === */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;   /* logo izq / nav der */
  padding:1rem 2rem;
  background:#fff;
}

/* el nav NO se estira; se empuja a la derecha */
header > nav{
  flex:0 0 auto;        /* evita width:100% heredados */
  width:auto;
  margin-left:auto;     /* lo manda a la derecha */
  display:block;
}

header > nav ul{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:3rem;
  list-style:none;
  margin:0;
  padding:0;
}

header > nav li{ margin:0; }

header > nav a{
  position:relative;
  text-decoration:none;
  color:#003366;
  font-weight:600;
  padding-bottom:6px;
  transition:color .3s;
}

header > nav a:hover{ color:#00509e; }

header > nav a.active::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:100%; height:4px;
  background:#66a3cc;
  border-radius:2px;
}




.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* espacio entre imagen y texto */
  margin-left: 30px;
}

.logo img {
  height: 80px; /* ajustá según el tamaño que quieras */
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa toda la altura de la pantalla */
  overflow: hidden;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* recorta y ajusta la imagen */
}

.overlay {
  position: absolute;
  top: 0;       /* pegado arriba */
  left: 0;
  width: 100%;  /* ocupa todo el ancho */
  height: 100%; /* ocupa toda la altura */
  background: rgba(0,0,0,0.4); /* capa oscura */
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;   /* centra horizontal */
  justify-content: flex-start; /* mantiene el texto arriba */
  text-align: center;

  padding-top: 10rem; /* espacio desde arriba */
}


.banner-text.medium {
  font-size: 2.2rem;   /* más grande que antes */
  font-weight: 600;
  margin: 0 0 15px;
}

.banner-text.large {
  font-size: 4rem;     /* el más grande y llamativo */
  font-weight: 800;
  margin: 0 0 20px;
}

.banner-text.small {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 auto;
  max-width: 600px;
  text-align: justify;      /* estira el texto */
  text-align-last: center;  /* centra la última línea */
  line-height: 1.6;         /* más aire entre renglones */
  letter-spacing: 1px;      /* espacio entre letras */
  word-spacing: 4px;        /* espacio entre palabras */
}


@media (max-width: 768px) {
  .banner-text.medium {
    font-size: 1.5rem;
  }
  .banner-text.large {
    font-size: 2.5rem;
  }
  .banner-text.small {
    font-size: 1rem;
  }
}

.banner-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #003f7f; 
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal; /* sin negrita */
  text-decoration: none;
  border-radius: 30px; 
  transition: background 0.3s ease, transform 0.2s ease;
}

.swiper-pagination {
  position: absolute !important;
  bottom: 30px;   /* distancia desde abajo */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;    /* asegura que quede sobre la imagen y overlay */
  text-align: center;
}

.swiper-pagination-bullet {
  background: #fff;   /* puntos blancos */
  opacity: 0.7;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #00509e; /* punto activo en azul */
  opacity: 1;
}

.sobre-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.sobre-nosotros,
.nuestro-enfoque {
  flex: 1;
}

.sobre-nosotros h1,
.nuestro-enfoque h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 0.5rem;
}

.linea {
  display: block;
  width: 60px;
  height: 6px;
  background-color: #66a3cc;
  margin-bottom: 2rem;
  border-radius: 3px;
}

/* 🔹 Texto de Sobre Nosotros en azul */
.sobre-nosotros p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #003366;  /* azul */
}

.logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.logos img {
  height: 60px;
  object-fit: contain;
}

/* Estilos de enfoque */
.enfoque-item {
  display: flex;
  align-items: center;
  background-color: #b8d4e6;
  border: 1px solid #003366;
  border-radius: 50px;
  padding: 15px 25px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #003366;
}

.enfoque-item .check {
  margin-right: 15px;
  font-size: 1.5rem;
  color: #003366;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .sobre-container {
    flex-direction: column;
    gap: 3rem;
  }
  .logos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .logos img {
    height: 50px;
  }
}

@media (max-width: 600px) {
  .sobre-nosotros h1,
  .nuestro-enfoque h1 {
    font-size: 2rem;
    text-align: center;
  }

  .linea {
    margin: 0 auto 1.5rem auto;
  }

  .sobre-nosotros p {
    font-size: 1rem;
    text-align: center;
  }

  .enfoque-item {
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 30px;
    text-align: center;
    justify-content: center;
  }

  .enfoque-item .check {
    font-size: 1.2rem;
    margin-right: 10px;
  }
}

.servicios {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f0f6fa; /* azul muy claro */
}

.servicios h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 0.5rem;
}

.servicios .linea {
  display: block;
  width: 60px;
  height: 6px;
  background-color: #66a3cc;
  margin: 0 auto 3rem auto;
  border-radius: 3px;
}

/* Grid de servicios */
.service-grid {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* mantiene el botón alineado abajo */
  text-align: center;
  min-height: 250px; /* 🔹 altura mínima igual para todas */
}

.service:hover {
  transform: translateY(-5px);
}

.service i {
  font-size: 3rem;
  color: #00509e;
  margin-bottom: 1rem;
}

.service h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1rem;
}

.service p {
  font-size: 1rem;
  color: #002244;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.clientes {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
}

.clientes h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 0.5rem;
}

.clientes .linea {
  display: block;
  width: 60px;
  height: 6px;
  background-color: #66a3cc;
  margin: 0 auto 2rem auto;
  border-radius: 3px;
}

/* 🔹 Texto centrado con énfasis en azul */
.clientes p {
  font-size: 1.2rem;
  color: #003366;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.clientes p strong {
  font-weight: 700;
}

/* Grilla 4x2 para logos */
.clientes-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-top: 2.5rem;
}

.clientes-logos img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%); /* siempre en gris */
  opacity: 0.8;
}

/* Responsive: 2 columnas en móviles */
@media (max-width: 768px) {
  .clientes-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.extra-clientes {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.extra-clientes.mostrar {
  max-height: 500px; /* suficiente para mostrar los logos */
}

.btn-ver-mas {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #003366;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-ver-mas:hover {
  background-color: #005599;
}

.contacto {
  background-color: #f0f6fa;
  padding: 4rem 2rem 6rem 2rem; /* 👈 más padding abajo */
  margin-bottom: 3rem;
}

.contacto-contenedor {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* 👈 hace que ambas columnas tengan el mismo alto */
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

/* Columna izquierda (formulario) */
.formulario {
  flex: 1;
}

.formulario h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 0.5rem;
}

.linea {
  display: block;
  width: 60px;
  height: 6px;
  background-color: #66a3cc;
  margin-bottom: 1.5rem;
  border-radius: 3px;
}

.formulario p {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-height: 150px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

button {
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #00509e;
}

/* Columna derecha (información) */
.info {
  flex: 1;
  background-color: #003366;
  color: #fff;
  padding: 2.5rem;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 a {
  text-decoration: none;
  color: inherit; /* mantiene el color del h2 */
}

h2 a:hover {
  color: #00509e; /* opcional: un color distinto al pasar el mouse */
}


.info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info .linea {
  background-color: #66a3cc;
  margin-bottom: 1.5rem;
}

.info p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #e6e6e6;
}

.dato {
  display: flex;
  align-items: center; /* centra el ícono respecto al bloque */
  gap: 1rem;
} 

.telefonos {
  display: flex;
  flex-direction: column; /* uno debajo del otro */
  gap: 0.3rem; /* espacio entre los números */
}

.telefonos span {
  font-size: 1.1rem;
  color: #fff;
}


.dato i {
  font-size: 1.3rem;
  color: #66a3cc;
}

.info hr {
  border: none;
  border-top: 1px solid #66a3cc;
  margin: 1rem 0;
}

/* Responsive */
@media (max-width: 992px) {
  .contacto-contenedor {
    flex-direction: column;
  }
  .info {
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}


.footer {
  background-color: #424041; /* gris oscuro */
  color: #fff;
  padding: 2rem 1.5rem;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-logo {
  height: 40px; /* ajustá según el tamaño real del logo */
  margin-bottom: 1rem;
  display:block;
  
}

.footer-left p {
  text-align: left;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ccc;
  max-width: 350px;
}

.footer-center h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #bbb;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #66a3cc; /* azul al pasar el mouse */
}

.footer-right p {
  font-size: 0.9rem;
  color: #ccc;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-left p {
    margin: auto;
  }
}

/* ======= SERVICIOS ======= */
.banner-servicios .banner-imagen img {
  width: 100%;
  height: 60vh; /* visible 60% de alto */
  object-fit: cover;
  display: block;
}

.servicios {
  background: #e9f1f7; /* mismo color de fondo celeste suave */
  text-align: center;
  padding: 4rem 2rem;
}

.servicios h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a3763; /* azul fuerte */
  margin-bottom: 0.5rem;
}

.servicios .linea {
  display: block;
  width: 60px;
  height: 4px;
  color: #66a3cc; /* mismo azul que el título */
  margin: 0.5rem auto 2rem auto;
  border-radius: 3px;
}

.servicios p {
  max-width: 800px;
  margin: 0 auto 1rem auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a3763;
  font-weight: 550;
}

/* Imagen de fondo */
.banner-servicios {
  position: relative;
  width: 100%;
}

.banner-servicios .banner-imagen img {
  width: 100%;
  height: 60vh; /* ocupa 60% de la pantalla */
  object-fit: cover;
  display: block;
}

/* Caja superpuesta */
.caja-servicios {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  
  width: 800px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 2;

  /* 👇 agrega espacio por debajo */
  margin-top: -80px;
}

/* Caja superpuesta */
.caja-imagen {
  position: absolute;
  top: 44.45%;
  right: 200px;             /* 👈 ajusta la distancia al borde derecho */
  transform: translateY(-50%);
  
  width: 400px;             /* 👈 más ancha */
  height: 450px !important;            /* 👈 más corta */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 2;
}

.caja-imagen img {
  width: 100%;
  height: 100%;             /* 👈 fuerza a llenar la caja */
  object-fit: cover;        /* 👈 recorta manteniendo proporción */
  display: block;
}

/* Caja superpuesta */
.caja-imagen2 {
  position: absolute;
  top: 43.45%;
  right: 200px;             /* 👈 ajusta la distancia al borde derecho */
  transform: translateY(-50%);
  
  width: 400px;             /* 👈 más ancha */
  height: 575px;            /* 👈 más corta */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 2;
}

.caja-imagen2 img {
  width: 100%;
  height: 100%;             /* 👈 fuerza a llenar la caja */
  object-fit: cover;        /* 👈 recorta manteniendo proporción */
  display: block;
}

/* Caja superpuesta */
.caja-imagen3 {
  position: absolute;
  top: 43.45%;
  right: 200px;             /* 👈 ajusta la distancia al borde derecho */
  transform: translateY(-50%);
  
  width: 400px;             /* 👈 más ancha */
  height: 575px;            /* 👈 más corta */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 2;
}

.caja-imagen3 img {
  width: 100%;
  height: 100%;             /* 👈 fuerza a llenar la caja */
  object-fit: cover;        /* 👈 recorta manteniendo proporción */
  display: block;
}

.caja-servicios h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a3763;
  margin-bottom: 0.5rem;
}

.caja-servicios .linea {
  display: block;
  width: 60px;
  height: 3px;
  background: #66a3cc;
  margin-bottom: 1.5rem;
}

/* Lista */
.caja-servicios ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.caja-servicios li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
}

.caja-servicios li:last-child {
  border-bottom: none;
}

.caja-servicios .icono {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid #1a3763;
  border-radius: 50%;
  color: #1a3763;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.caja-servicios p {
  margin: 0;
  font-size: 1rem;
  color: #1a3763;
  line-height: 1.5;
}

.caja-servicios p strong {
  font-weight: 700;
}



/* ======= OTROS SERVICIOS ======= */
.otros-servicios {
  text-align: center;
  padding: 4rem 0;         /* 🔹 padding lateral fuera, ya que ocupa todo el ancho */
  background: #fff;
  width: 100vw;            /* 🔹 ocupa todo el ancho */
  margin-top: 450px;
}

.otros-servicios h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #003366;          /* 🔹 igual al resto de secciones */
}

.otros-servicios .linea {
  display: block;
  width: 70px;
  height: 5px;
  background: #66a3cc;     /* 🔹 azul, no blanco */
  margin: 0.5rem auto 2rem auto;
  border-radius: 3px;
}

.otros-servicios-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.servicio-card {
  flex: 1;
  min-width: 320px;   /* más anchas en pantallas chicas */
  max-width: 500px;   /* aumenta el límite en pantallas grandes */
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}


.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.15);
}

.servicio-card i {
  font-size: 2.5rem;
  color: #66a3cc;
  margin-bottom: 1rem;
}

.servicio-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #003366;
}

.servicio-card a {
  color: #66a3cc;
  text-decoration: none;
  border-bottom: 1px solid #66a3cc;
  font-size: 0.95rem;
}

.servicio-card a:hover {
  color: #00509e;
  border-bottom-color: #00509e;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
  .contenedor-servicios {
    flex-direction: column;
    margin-top: -40px;
  }
  .caja-imagen { height: 300px; }.certificaciones {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
}

.certificaciones h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a3763;
  margin-bottom: 0.5rem;
}

.certificaciones .linea {
  display: block;
  width: 60px;
  height: 4px;
  background: #1a3763;
  margin: 0 auto 1.5rem auto;
  border-radius: 3px;
}

.certificaciones p {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a3763;
}

/* Grid de tarjetas */
.certificaciones-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 3rem auto; /* centra y da espacio inferior */
  padding: 0 1rem;
}

/* Card */
.certificaciones .card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: #e0effa;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.certificaciones .card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a3763;
  margin-bottom: 1rem;
}

.certificaciones .card p {
  font-size: 0.95rem;
  color: #1a3763;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Botones */
.certificaciones .botones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.certificaciones .botones a {
  background: #1a3763;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.certificaciones .botones a:hover {
  background: #0f2345;
}

  .otros-servicios-grid { flex-direction: column; align-items: center; }
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* 👈 evita scroll horizontal */
}

/* CERTIFIACIONES */
.banner-certificaciones {
  position: relative;
  width: 100%;
  text-align: center;
}

.banner-certificaciones .banner-imagen img {
  width: 100%;
  height: 50vh; /* altura del banner */
  object-fit: cover;
  display: block;
}

/* ===== SECCIÓN CERTIFICACIONES ===== */
.certi-section {
  padding: 4rem 2rem;
  background: #fff;
}

.certi-section .certi-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 0.5rem;
  text-align: center;
}

.certi-section .certi-line {
  display: block;
  width: 60px;
  height: 6px;
  background-color: #66a3cc;
  margin: 0 auto 2rem auto;
  border-radius: 3px;
}

.certi-section .certi-intro {
  font-size: 1.2rem;
  color: #003366;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

/* ===== SECCIÓN CERTIFICACIONES (aislada con certbox-) ===== */
/* ===== SECCIÓN CERTIFICACIONES (aislada con certbox-) ===== */
.certbox-section {
  padding: 4rem 2rem;
  background: #fff;
  margin-bottom: 3rem; /* separación con el footer */
}

.certbox-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003366;
  margin-bottom: 0.5rem;
  text-align: center;
}

.certbox-line {
  display: block;
  width: 60px;
  height: 6px;
  background-color: #66a3cc;
  margin: 0 auto 2rem auto;
  border-radius: 3px;
}

.certbox-intro {
  font-size: 1.2rem;
  color: #003366;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

/* GRID */
.certbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* TARJETA */
.certbox-card {
  background: #f9f9f9;
  border-radius: 12px;
  /* 👇 sombra ahora usa el mismo color que el header */
  box-shadow: 0 6px 15px rgba(77, 128, 179, 0.4);
  overflow: hidden;
  text-align: center; /* 👈 centra texto en toda la tarjeta */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HEADER de tarjeta */
.certbox-card-header {
  background: #4d80b3;
  color: #fff;
  padding: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.certbox-card-header h3 {
  font-size: 1.2rem;
  margin: 0;
}

/* CUERPO */
.certbox-card-body {
  padding: 1.5rem;
}

.certbox-card-body p {
  font-size: 1rem;
  color: #003366;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center; /* 👈 asegura centrado */
}

/* BOTONES */
.certbox-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.certbox-buttons a {
  background: #003366;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.certbox-buttons a:hover {
  background: #005599;
}

/* BOTONES2 */
.certbox-buttons2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.certbox-buttons2 a {
  background: #003366;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.certbox-buttons2 a:hover {
  background: #005599;
  color: #fff !important;
}







