/* =====================================================================
   SKF College — hoja de estilo del rediseño
   Tipografías: SKF Sans / SKF Display desde el CDN oficial fonts.skf.com.
   Los titulares NO dependen de ninguna fuente: van como SVG con los
   trazados ya convertidos dentro del HTML.
   ===================================================================== */

@font-face {
  font-family: "SKF Sans";
  src: url("https://fonts.skf.com/SKFSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SKF Sans";
  src: url("https://fonts.skf.com/SKFSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SKF Sans";
  src: url("https://fonts.skf.com/SKFSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --azul: #0C00FF;
  --azul-osc: #0900C4;
  --negro: #000;
  --gris-txt: #3d3d3d;
  --gris-bg: #f5f5f5;
  --gris-lin: #d8d8d8;
  --pizarra: #2f3a42;
  --wrap: 1840px;
  --pad: clamp(20px, 3.2vw, 60px);
  --sans: "SKF Sans", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.55;
  color: var(--negro);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Texto sólo para lectores de pantalla / buscadores ------------------- */
.vh {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--azul);
  color: #fff;
  padding: 12px 20px;
}

.skip:focus {
  left: 0;
}

/* ---------------------------------------------- titulares vectoriales */
.ttl {
  margin: 0;
  font-weight: 400;
}

.t {
  display: block;
  width: 100%;
  height: auto;
}

.t--hero {
  max-width: 1753.3px;
}

.t--hero_mob {
  max-width: 1029.9px;
  display: none;
}

.t--capacitacion {
  max-width: 423.8px;
}

.t--queescollege {
  max-width: 436.8px;
  margin-inline: auto;
}

.t--card1 {
  max-width: 201.8px;
}

.t--card2 {
  max-width: 242.4px;
}

.t--card3 {
  max-width: 274.3px;
}

.t--cursosonline {
  max-width: 343.7px;
}

.t--diplomado {
  max-width: 481.2px;
}

.t--cta {
  max-width: 873.0px;
  margin-inline: auto;
}

.t--form {
  max-width: 413.1px;
}

.t--interes {
  max-width: 554.7px;
}

.t--f_college {
  max-width: 274.7px;
}

.t--f_informes {
  max-width: 200.5px;
}

.t--f_acerca {
  max-width: 228.2px;
}

.t--f_factura {
  max-width: 173.2px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: .95em;
  color: var(--gris-txt);
}

/* ------------------------------------------------------------ botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--azul);
  color: #fff;
  padding: 15px 30px;
  border: 2px solid var(--azul);
  border-radius: 0;
  font: inherit;
  font-weight: 500;
  font-size: .95em;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--azul-osc);
  border-color: var(--azul-osc);
}

.btn .arw {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}

.btn--ghost {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--negro);
}

.lnk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--azul);
  font-weight: 700;
  font-size: .92em;
  text-decoration: none;
}

.lnk .arw {
  width: 1.35em;
  height: 1.35em;
  flex: none;
  transition: transform .18s ease;
}

.lnk:hover .arw,
.lnk:focus-visible .arw {
  transform: translateX(4px);
}

.lnk:hover span {
  text-decoration: underline;
}

.lnk--cat {
  margin-top: 50px;
}

/* ---------------------------------------------------------- cabecera */
.hdr {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
}

.hdr__in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 26px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.hdr__logo {
  justify-self: center;
}

.hdr__logo img {
  width: 160px;
  filter: brightness(0) invert(1);
}

.hdr__login {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: .9em;
}

.hdr__login svg {
  width: 26px;
  height: 26px;
  flex: none;
}

.hdr__login:hover span {
  text-decoration: underline;
}

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

.nav a {
  text-decoration: none;
  font-size: .9em;
}

.nav a:hover {
  text-decoration: underline;
}

.nav__toggle,
.nav__burger {
  display: none;
}

/* -------------------------------------------------------------- hero */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, .18) 78%),
    linear-gradient(to top, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .1) 42%, transparent 62%);
}

.hero__in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(150px, 15vw, 230px) var(--pad) clamp(50px, 5vw, 80px);
  min-height: clamp(560px, 56vw, 980px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__ttl {
  margin: 0 0 auto;
}

.hero__aside {
  margin-left: auto;
  max-width: 430px;
  text-align: left;
}

.hero__aside p {
  margin: 0 0 26px;
  font-size: .95em;
}

/* ------------------------------------------------------ capacitación */
.cap {
  padding: clamp(70px, 8vw, 150px) 0;
}

.cap__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
}

.cap__txt {
  max-width: 620px;
  margin-left: auto;
}

.cap__txt .ttl {
  margin-bottom: 34px;
}

.cap__txt p {
  margin: 0 0 34px;
}

.cap__img img {
  width: 100%;
  max-width: 675px;
}

/* --------------------------------------------------- qué es college */
.que {
  padding: 0 0 clamp(70px, 8vw, 140px);
  text-align: center;
}

.que>.wrap>.ttl {
  margin-bottom: clamp(50px, 6vw, 100px);
}

.que__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 70px);
  text-align: left;
  max-width: 1600px;
  margin-inline: auto;
}

.que__col {
  display: flex;
  flex-direction: column;
}

.que__col .ttl {
  margin-bottom: 20px;
}

.que__col p {
  margin: 0 0 28px;
  font-size: .92em;
}

.que__col .lnk {
  margin-top: auto;
  align-self: flex-start;
}

/* ----------------------------------------------------- cursos online */
.cursos {
  background: var(--gris-bg);
  padding: clamp(60px, 7vw, 120px) 0 clamp(70px, 8vw, 140px);
}

.cursos>.wrap>.ttl {
  margin-bottom: clamp(40px, 4vw, 70px);
}

.cursos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.6vw, 48px) clamp(20px, 2.4vw, 44px);
}

.curso {
  display: flex;
  flex-direction: column;
}

.curso__media {
  position: relative;
}

.curso__media img {
  width: 100%;
  aspect-ratio: 394 / 203;
  object-fit: cover;
}

.curso__precio {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--azul);
  color: #fff;
  padding: 4px 12px 4px 6px;
  border-radius: 3px;
  font-size: .72em;
  font-weight: 500;
  line-height: 1.6;
}

.ico-precio {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

.curso__modalidad {
  margin: 16px 0 10px;
  font-size: .72em;
  color: var(--gris-txt);
}

.curso__titulo {
  margin: 0 0 14px;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.3;
}

.curso__desc {
  margin: 0 0 22px;
  font-size: .8em;
  color: var(--gris-txt);
}

.curso .lnk {
  margin-top: auto;
}

/* ------------------------------------------------------------ banner */
.banner {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.banner__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 14, 18, .55) 0%, rgba(10, 14, 18, .15) 55%, rgba(10, 14, 18, .35) 100%);
}

.banner__in {
  padding: clamp(70px, 8vw, 150px) 0 clamp(40px, 4vw, 70px);
}

.banner__slides {
  display: grid;
}

.banner__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}

.banner__box {
  max-width: 640px;
  background: rgba(47, 58, 66, .78);
  padding: clamp(30px, 3vw, 55px);
}

.banner__ttl {
  margin-bottom: 22px;
}

.banner__ttl--txt {
  font-size: clamp(30px, 2.8vw, 54px);
  font-weight: 700;
  line-height: 1.15;
}

.banner__box p {
  margin: 0 0 30px;
  font-size: .88em;
}

.banner__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#bn1:checked~.banner__in .banner__slide:nth-child(1),
#bn2:checked~.banner__in .banner__slide:nth-child(2),
#bn3:checked~.banner__in .banner__slide:nth-child(3),
#bn4:checked~.banner__in .banner__slide:nth-child(4) {
  opacity: 1;
  visibility: visible;
}

.banner__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 60px);
  margin-top: clamp(60px, 8vw, 150px);
}

.banner__tab {
  border-top: 2px solid rgba(255, 255, 255, .45);
  padding-top: 16px;
  text-align: center;
  font-size: .8em;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}

.banner__tab:hover {
  color: #fff;
}

#bn1:checked~.banner__in .banner__tab:nth-child(1),
#bn2:checked~.banner__in .banner__tab:nth-child(2),
#bn3:checked~.banner__in .banner__tab:nth-child(3),
#bn4:checked~.banner__in .banner__tab:nth-child(4) {
  border-color: #fff;
  color: #fff;
}

.banner__radio:focus-visible~.banner__in .banner__tabs {
  outline: 2px solid #fff;
  outline-offset: 6px;
}

/* ---------------------------------------------------- acreditaciones */
.acred {
  padding: clamp(60px, 7vw, 110px) 0;
}

.acred__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px clamp(30px, 4vw, 70px);
}

.acred__item {
  border-top: 1px solid var(--gris-lin);
  padding-top: 18px;
  font-size: .85em;
}

.acred__t {
  display: block;
  font-weight: 700;
}

.acred__s {
  display: block;
  color: var(--gris-txt);
}

/* --------------------------------------------------------------- CTA */
.cta {
  padding: clamp(50px, 6vw, 110px) 0 clamp(40px, 5vw, 90px);
  text-align: center;
}

.cta p {
  max-width: 780px;
  margin: 34px auto 0;
  font-size: .88em;
}

/* --------------------------------------------------------- formulario */
.form {
  padding: clamp(50px, 6vw, 110px) 0 clamp(70px, 8vw, 140px);
}

.form__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
}

.form__col {
  max-width: 700px;
}

.form__col>.ttl {
  margin-bottom: 34px;
}

.form__f {
  display: flex;
  flex-direction: column;
}

.form__f label {
  font-size: .8em;
  margin-bottom: 8px;
}

.form__f input[type="text"],
.form__f input[type="email"],
.form__f input[type="tel"],
.form__f textarea {
  font: inherit;
  font-size: .9em;
  color: var(--negro);
  border: 1px solid #9b9b9b;
  background: #fff;
  border-radius: 2px;
  padding: 10px 14px;
  margin-bottom: 24px;
  width: 100%;
}

.form__f textarea {
  resize: vertical;
}

.form__f input:focus-visible,
.form__f textarea:focus-visible {
  outline: 2px solid var(--azul);
  outline-offset: 1px;
}

.form__captcha {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #d3d3d3;
  background: #f9f9f9;
  border-radius: 3px;
  padding: 16px 20px;
  margin-bottom: 26px;
  width: max-content;
  font-size: .8em;
}

.form__captchabox {
  width: 26px;
  height: 26px;
  border: 2px solid #b7b7b7;
  background: #fff;
  border-radius: 2px;
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  font-size: .8em;
}

.form__check input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  flex: none;
  accent-color: var(--azul);
}

.form__check a {
  color: var(--azul);
  text-decoration: none;
}

.form__check a:hover {
  text-decoration: underline;
}

.form__f .btn {
  align-self: flex-start;
}

.form__aside {
  border-left: 1px solid var(--negro);
  padding-left: clamp(30px, 5vw, 100px);
  display: flex;
  align-items: center;
}

.form__box {
  background: var(--gris-bg);
  padding: clamp(34px, 4vw, 70px);
  width: 100%;
}

.form__box>.ttl {
  margin-bottom: 26px;
}

.form__box p {
  margin: 0 0 32px;
  font-size: .85em;
}

/* --------------------------------------------------------------- pie */
.ft {
  padding: clamp(50px, 6vw, 90px) 0 40px;
  border-top: 1px solid var(--negro);
}

.ft__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 70px);
}

.ft__col>.ttl {
  margin-bottom: 26px;
}

.ft__col p {
  margin: 0 0 18px;
  font-size: .72em;
  color: var(--gris-txt);
  max-width: 40ch;
}

.ft__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .8em;
}

.ft__list li {
  margin-bottom: 14px;
}

.ft__list a {
  text-decoration: none;
}

.ft__list a:hover {
  text-decoration: underline;
}

.ft__logo {
  margin: clamp(50px, 6vw, 90px) 0 30px;
}

.ft__logo img {
  width: 160px;
}

.ft__legal {
  border-top: 1px solid var(--negro);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  align-items: center;
  justify-content: space-between;
}

.ft__legalnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  font-size: .62em;
}

.ft__legalnav a {
  text-decoration: none;
}

.ft__legalnav a:hover {
  text-decoration: underline;
}

.ft__social {
  display: flex;
  gap: 22px;
}

.ft__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ft__copy {
  margin: 26px 0 0;
  font-size: .62em;
  color: var(--gris-txt);
}

/* ==================================================================== */
/*  RESPONSIVE                                                          */
/* ==================================================================== */
@media (max-width: 1200px) {
  .cursos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .nav__burger span {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    background: rgba(0, 0, 0, .92);
    padding: 20px var(--pad) 30px;
  }

  .nav ul {
    flex-direction: column;
    gap: 18px;
  }

  .nav__toggle:checked~.nav {
    display: block;
  }

  .hdr__in {
    grid-template-columns: auto 1fr auto;
  }

  .hdr__login span {
    display: none;
  }

  .t--hero {
    display: none;
  }

  .t--hero_mob {
    display: block;
  }

  .hero__in {
    min-height: 0;
    padding-top: clamp(120px, 26vw, 200px);
  }

  .hero__ttl {
    margin-bottom: 50px;
  }

  .hero__aside {
    margin-left: 0;
    max-width: none;
  }

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

  .cap__txt {
    max-width: none;
    margin-left: 0;
    order: 2;
  }

  .cap__img {
    order: 1;
  }

  .cap__img img {
    max-width: none;
  }

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

  .acred__list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .banner__box {
    max-width: none;
  }

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

  .form__aside {
    border-left: 0;
    border-top: 1px solid var(--negro);
    padding-left: 0;
    padding-top: 50px;
  }
}

@media (max-width: 620px) {
  .cursos__grid {
    grid-template-columns: 1fr;
  }

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

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

  .ft__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .form__captcha {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

/* =====================================================================
   ESTILOS ANTERIORES PARA REFERENCIA Y EVITAR DESCUADRES DE OTRAS SECCIONES
   ===================================================================== */


@font-face {
  font-family: 'SKFSans';
  src: url('https://www.skfcollege.com.mx/files/6947025/SKFSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 980px) {
  .bjqs-caption h2 {
    font-size: 50px !important;
  }
}

@media (max-width: 768px) {
  .seccionFlex {
    flex-direction: column;
    text-align: center;
  }

  .columnaImagen img {
    max-width: 100%;
  }
}

header {
  width: 100% !important;
  left: 0 !important;
}

#carouselWrap {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}

ul.bjqs li .caption-wrapper {
  max-width: 1700px;
}


.tituloSlider {
  font-family: "SKFSans", Sans-serif !important;
  font-weight: 500 !important;
  color: #000000 !important;
}

.textoSlider {
  font-family: "SKFSans", Sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #000000 !important;
}


.tituloSeccion {
  font-family: "SKFSans", Sans-serif !important;
  font-size: 35px !important;
  font-weight: 600 !important;
  color: #000000 !important;
  line-height: 1 !important;
}

.textoSeccion {
  font-family: "SKFSans", Sans-serif !important;
  font-weight: 400 !important;
  color: #000000 !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.seccionFlex {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 100px 0;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.columnaImagen img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.columnaTexto {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30%;
}

.columnaImagen {
  max-width: 50%;
}

.seccion-beneficios {
  padding: 60px 20px;
  background: #f8fafc;
  font-family: "SKFSans", Sans-serif !important;
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}

.container-principal {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.titulo-principal {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.descripcion-principal {
  max-width: 700px;
  margin: auto;
  font-size: 14px;
  color: #333;
  margin-bottom: 50px;
}

.tarjetas {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tarjeta {
  width: 300px;
  text-align: left;
}

.img-tarjeta {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
}

.titulo-card {
  font-size: 20px !important;
  font-weight: 700;
  margin: 15px 0 10px 0;
  line-height: 1 !important;
  color: #000 !important;
}

.texto-card {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.subtitulo {
  text-align: center;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #000 !important;
}

.carrusel-css {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin: 50px 0px;
}

.carrusel-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: moverCinta 25s linear infinite;
}

.slide {
  min-width: 250px;
  background: #ecf0f1;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
  border: 1px solid #ddd;
}

.slide img {
  max-width: 140px;
  margin-bottom: 10px;
}

@keyframes moverCinta {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .slide {
    min-width: 80%;
  }
}

.textoBotonHome {
  color: #fff !important;
}

.btn-center {
  margin-top: 40px;
  text-align: center;
}

.btn-principal {
  display: inline-block;
  background: #0041ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.seccion-titulos {
  margin: 50px 0px;
}

/* Inicio grid cursos */

.btn-principal:hover {
  background: #002fcc;
}

.contenedorGris {
  background: #f5f7fa;
  padding: 40px 50px;
}

.gridCursos {
  display: grid;
  grid-template-columns: repeat(4, minmax(320px, 1fr));
  gap: 30px;
}

.cardCurso {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cardCurso:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12);
}

.imgCardCurso {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.textoCurso {
  padding: 20px;
}

.tituloPequeÃ±oCurso {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0041ff;
  margin: 0;
  letter-spacing: 0.5px;
}

.tituloGrandeCurso {
  font-size: 25px !important;
  font-weight: 700;
  color: #222 !important;
  line-height: 1.2 !important;
  margin: 5px 0 12px;
  min-height: 52px;
}

.descripcionCurso {
  font-size: 18px;
  color: #555;
  line-height: 1.45;
  min-height: 65px;
}

.fechaCurso p {
  color: #000 !important;
  font-size: 14px !important;
  padding: 0px 20px;
  font-weight: 600 !important;
}

.precioCurso {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #1a1a1a;
  padding: 20px 0px;
  margin: 0;
}

.botonCardCurso {
  padding: 20px;
  margin-top: auto;
}

.btn-principal {
  display: inline-block;
  background: #0041ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 700;
  height: fit-content;
  width: fit-content;
}

.btn-principal:hover {
  background: #002fcc;
}

.textoBotonHome {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

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


@media(max-width: 768px) {
  .contenedorGris {
    padding: 20px;
  }
}

.contenedorContacto {
  text-align: center;
  margin: 50px 0px;
}

.contenedorWa {
  text-align: center;
}

.contenedorInformes {
  text-align: center;
}

.linkWA {
  display: inline-block;
  background: #23d366;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  margin-left: 30px;
  text-decoration: none !important;
}


.tituloSeccionInformacion {
  font-size: 32px !important;
  font-weight: 700 !important;
  margin-bottom: 20px;
  text-align: center;
  color: #000 !important;
}

.textoDescripcion p {
  text-align: center;
  font-size: 16px !important;
}

.textoWA {
  text-align: center;
  margin-top: 20px;
}

.contenedorWA {
  text-align: center;
  padding: 20px;
  margin: 25px 0px;
}

.imgWA {
  margin: 20px 0px;
}

.tituloCurso {
  font-size: 1.5rem !important;
}


.datosCurso p {
  font-size: 1rem !important;
}

.datosCurso p {
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  margin: 20px 0px !important;
}

.boton {
  display: inline-block;
  background: #0041ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 700;
  height: fit-content;
  width: fit-content;
}

.textoBoton {
  color: #fff !important;
  text-decoration: none !important;
}

a {
  text-decoration: none !important;
}

.contenedorBotones {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: none;
  padding: 5px;
  background: #f3f4f6;
  border-radius: 50px;
}

.btnSeccion {
  margin: 0;
}

.btnAccion {
  background: transparent;
  border: none;
  padding: 10px 22px;
  font-size: 0.95rem;
  cursor: pointer;
  color: #444;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btnAccion:hover {
  background: #e1e6ff;
  color: #0041ff;
}

.botonActivo {
  background: #0041ff;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Contenedor principal */
.contenedorInformacionCurso {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  width: 100%;
}

/* Cada columna */
.columnaInformacion {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Icono */
.columnaInformacion .icono img {
  width: 70px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

/* TÃ­tulo */
.tituloInformacion {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

/* Texto */
.textoInformacion {
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  text-align: left;
}

.textoInformacion ul {
  padding-left: 20px;
}

.textoInformacion p {
  margin: 0;
}

/* Ajuste en pantallas pequeÃ±as */
@media (max-width: 500px) {
  .textoInformacion {
    text-align: center;
    padding: 0 10px;
  }
}

.textoInformacionLecciones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 100%;
}

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

.leccion {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}

.imgLeccion {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.tituloLeccion {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.leccion p {
  margin: 0;
  line-height: 1.5;
}

.tituloSeccionInformacionCurso {
  font-weight: 600 !important;
  color: #000000 !important;
  font-size: 1.5rem !important;
}

.botonCurso {
  display: inline-block;
  background: #0041ff;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 700;
  height: fit-content;
  width: fit-content;
  margin-top: 15px;
}

.botonSeccionFooter {
  display: inline-block;
  background: #0041ff;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 700;
  height: fit-content;
  width: fit-content;
}

.linkContacto {
  display: inline-block;
  background: #0041ff;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 700;
  height: fit-content;
  width: fit-content;
}


.contenedorFooterContacto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 40px 0;
  align-items: start;
}

.seccionInformes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.seccionInformes p {
  font-size: 16px !important;
}

.seccionInformes p,
.seccionInformes a {
  margin: 0;
}

.botonSeccionFooter {
  display: inline-block;
  margin: 15px 0;
}

@media (max-width: 800px) {
  .contenedorFooterContacto {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.textoContacto {
  text-align: center;
}

#contenedorMetodologia {
  display: none;
}

#contenedorContenido {
  display: none;
}

#contenedorLecciones {
  display: none;
}

.tituloPagina {
  color: #000000 !important;
  font-size: 1.5rem !important;
  font-weight: 600;
}

.textoGrisAcreditaciones {
  color: #000000 !important;
  font-size: 1.2rem !important;
  font-weight: 600;
}


.contenedorTablaAcreditaciones h2 {
  font-size: 1.1rem !important;
}

.contenedorTablaAcreditaciones p {
  font-size: 1rem !important;
}