:root {
  /* fonts */
  --font-title: "Barlow Condensed", sans-serif;
  --font-body: "Manrope", sans-serif;
  /*  */
  /* Backgrounds */
  --back-nav-footer: rgba(9, 18, 45, 0.92);
  /*  */
  /* Colors */
  --color-blue-princial: #000a68;
  --color-blue-mid: #1c6fdb;
  --color-blue-light: #ecf7ff;
  --color-black-principal: #333333;
  --color-orange: #ff8a00;
  --color-orange-strong: #ff6a00;
  /*  */
}

h1,
h2,
h3 {
  font-family: var(--font-title);
}

body {
  font-family: var(--font-body);
}

/* btn educapp */
.btn-educapp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, #208bd3, #24dafa);
  /* background: linear-gradient(
    135deg,
    var(--color-blue-princial),
    var(--color-blue-mid)
  ); */
  box-shadow: 0 12px 30px rgba(161, 161, 161, 0.35);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-educapp-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-educapp:hover {
  box-shadow: 0 12px 30px rgba(146, 181, 185, 0.35);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.55);
}
/*  */

/* btn warning */
.btn-warning-educapp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.35rem;
  background: linear-gradient(135deg, #ff9012, var(--color-orange));
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-warning-educapp i {
  font-size: 1.4rem;
}

.btn-warning-educapp:hover {
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.45);
  text-decoration: none;
}

/* .btn-warning-educapp:hover i {
  transform: rotate(-10deg) scale(1.15);
  transition: 0.3s;
} */

.btn-warning-educapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 40%;
  height: 100%;
  opacity: 0.7;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: skewX(-25deg);
  /* animation: shine 2.8s infinite; */
}

/* btn default */

.btn-default-educapp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  color: #ea580c;
  font-weight: 600;
  font-size: 1.35rem;
  background: linear-gradient(135deg, #ffffff, #fff0e6);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-default-educapp i {
  font-size: 1.4rem;
}

.btn-default-educapp:hover {
  color: #c54703;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(189, 88, 17, 0.45);
  text-decoration: none;
}

/* .btn-default-educapp:hover i {
  transform: rotate(-10deg) scale(1.15);
  transition: 0.3s;
} */

.btn-default-educapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 40%;
  height: 100%;
  opacity: 0.7;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 166, 131, 0.877),
    transparent
  );
  transform: skewX(-25deg);
  /* animation: shine 2.8s infinite; */
}

.texto-principal {
  color: var(--color-blue-princial) !important;
}

.texto-warning {
  color: var(--color-orange-strong) !important;
}

.texto-justified {
  display: block;
  text-align: justify;
  text-justify: inter-word;
}

.text-light-gray {
  color: #ddd !important;
}

.sub-title-section {
  color: #8f420e;
  line-height: 1.3;
  font-size: 3.8rem;
  font-weight: 500;
}

.sub-title-section-secondary {
  color: var(--color-blue-princial) !important;
  font-weight: 850;
}

.sub-sub-title-section {
  color: #666;
  line-height: 1;
  font-size: 2.6rem;
}

.mucho-texto {
  color: #4d4d4d;
  font-size: 1.2rem;
  line-height: 2;
}

.mucho-texto strong {
  color: #ff6a00;
  font-weight: 700;
}

.basic-section {
  background-color: #f8f8f8;
  padding: 25px 0px;
  position: relative;
  overflow: hidden;
}

.container-ilus {
  position: relative;
  overflow: hidden;
}

.basic-container {
  background: linear-gradient(180deg, #1d2866, #09113d);
  box-shadow: 0 30px 60px rgba(139, 46, 10, 0.08);
}

.basic-columns {
  border: 1px solid rgba(40, 60, 150, 0.08);
  box-shadow: 0 25px 60px rgba(18, 30, 80, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.basic-card {
  background: #ffffffec;
  border-radius: 28px;
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.basic-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(rgba(240, 89, 19, 0.137), transparent 90%);
  top: -115px;
  right: -115px;
  animation: floatCircleVariant 16s ease-in-out infinite;
}

.container-propio {
  border-radius: 32px;
  padding: 45px 35px;
  margin: 30px auto;
  max-width: 1300px;
  position: relative;
  overflow: hidden;
}

.column-propio {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.multi-purpose-line {
  /* bottom: 0px;
  left: 0px; */
  width: 50%;
  height: 2px;
  /* margin: 25px auto 35px auto; */
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    #fdba74,
    #ff6a00,
    #fdba74,
    transparent
  );
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  animation: lineAppear 0.7s ease forwards;
  animation-delay: 0.75s;
  /* position: absolute; */
}

/* Botón/título del accordion */
.custom-accordion {
  width: 100%;
  max-width: 100%;
  border: 1px solid #ddd;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s ease;
}

.accordion-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  padding: 12px 18px;
  border: none;
  border-radius: 0;
  background: #fff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.2s ease;
}

.accordion-trigger:hover {
  background: rgb(230, 244, 255);
  color: var(--color-blue-mid);
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #ffffff;
  padding: 0 18px;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.4s ease;
}

.accordion-content i {
  font-size: 1.2rem !important;
}

.custom-accordion.active {
  border-color: var(--color-blue-mid);
}

.custom-accordion.active .accordion-content {
  max-height: 500px;
  opacity: 1;
  padding: 15px 18px 18px;
}

.custom-accordion.active .accordion-icon {
  transform: rotate(180deg);
}

.custom-accordion.active .accordion-trigger {
  background: var(--color-blue-light);
  color: var(--color-blue-mid);
}
/*  */

/* iconicos */
.icon-principal-container {
  padding: 9px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: var(--color-orange-strong);
  border: 1px solid var(--color-orange-strong);
  background-color: #fff5ef;
  border-radius: 10px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-secondary-container {
  padding: 9px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: var(--color-blue-mid);
  border: 1px solid #8eb1e0a1;
  background-color: var(--color-blue-light);
  border-radius: 10px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: auto; */
}
/*  */

/* pills */
.pill-principal {
  font-size: 20px;
  font-weight: bold;
  padding: 9px;
  color: var(--color-orange-strong);
  border: 1px solid var(--color-orange-strong);
  background-color: #fff5ef;
  border-radius: 30px;
  letter-spacing: 1px;
}
.pill-secondary {
  font-size: 20px;
  font-weight: bold;
  padding: 9px;
  color: var(--color-blue-light);
  background-color: #ecf7ff3b;
  border-radius: 30px;
  letter-spacing: 1px;
}
/*  */

/*  */
/*  */

/* header reutiliazable */
.page-header {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 70px 25px;
  /* border-radius: 0 0 30px 30px; */
  /* background: linear-gradient(
    135deg,
    rgba(236, 247, 255, 0.95),
    rgba(220, 239, 255, 0.85),
    rgba(245, 249, 255, 0.95)
  ); */
  background: linear-gradient(
    295deg,
    /* rgba(50, 101, 228, 0.92), */ rgb(7, 32, 97),
    rgba(17, 23, 104, 0.932),
    var(--back-nav-footer)
  );
  box-shadow: 0 15px 45px rgba(18, 30, 80, 0.1);
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(36, 129, 216, 0.12) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: auto;
}
.page-header-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-blue-mid);
}
.page-header h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 15px rgba(36, 129, 216, 0.1);
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: auto;
}
.page-header p {
  max-width: 700px;
  margin: auto;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #f1f1f1e8;
}
.page-header-line {
  width: 65%;
  height: 2px;
  margin: 18px auto 20px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff8a00,
    #ffffff,
    #ff8a00,
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  animation: lineAppear 0.7s ease forwards;
  animation-delay: 0.75s;
  box-shadow: 0 0 20px rgba(255, 160, 0, 0.35);
}
/*  */

.navigate-section {
  width: 80%;
  margin: -35px auto 50px;
  z-index: 20;
}
.navigate-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.navigate-item {
  max-width: 300px;
  min-width: 200px;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(9, 16, 116, 0.18);
  /* border: 1px solid rgba(255, 255, 255, 0.65); */
  padding: 15px;
  /* background: rgba(255, 255, 255, 0.808); */
  background: linear-gradient(180deg, rgb(255, 255, 255), #f8fcff);
  transition: 0.35s;
  border-left: 3px solid var(--color-blue-mid);
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-blue-mid);
  line-height: 1.6;
  transition: 0.35s;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
  text-decoration: none;
}
.navigate-item.show {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.navigate-item:hover {
  transform: translateY(-2px);
}
/*  */

.table-cefip {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Encabezado */
.table-cefip thead {
  /* background: linear-gradient(
    135deg,
    var(--color-blue-princial),
    var(--color-blue-mid)
  ); */
}

.table-cefip th {
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(36, 129, 216, 0.2);
}

/* Celdas */
.table-cefip td {
  padding: 12px 18px;
  color: #435163;
  font-size: 17px;
  line-height: 1.85rem !important;
  border-bottom: 1px solid rgba(36, 129, 216, 0.08);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.table-cefip td i {
  font-size: 1.2rem !important;
  color: var(--color-orange-strong);
}

/* Separación vertical entre columnas */
.table-cefip th:not(:last-child),
.table-cefip td:not(:last-child) {
  border-right: 1px solid rgba(36, 129, 216, 0.09);
}

/* Última fila */
/* .table-cefip tbody tr:last-child td {
  border-bottom: none;
} */

/* Hover */
.table-cefip tbody tr {
  transition: background 0.25s ease;
}

.table-cefip tbody tr:hover {
  background: #f4f9ff;
}

.table-cefip tbody tr:hover td {
  color: var(--color-blue-princial);
}
/*  */

/* Líneas */
.diff-title-line {
  width: 35%;
  height: 2px;
  margin: 18px auto 20px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff8a00,
    #ffffff,
    #ff8a00,
    transparent
  );
  box-shadow: 0 0 20px rgba(255, 160, 0, 0.35);
}

.alt-title-line {
  width: 35%;
  height: 2px;
  margin: 18px auto 20px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffc9a2,
    var(--color-orange-strong),
    #ffc9a2,
    transparent
  );
  box-shadow: 0 0 20px rgba(255, 160, 0, 0.35);
}
/*  */

/* Ilustraciones bien acá */
.circle-principal-ilu {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    rgba(110, 132, 255, 0.281),
    rgba(6, 38, 218, 0.219) 60% /* transparent 75% */
  );
  top: -20px;
  right: -110px;
  animation: floatCircle 18s ease-in-out infinite;
}
.circle-principal-sm-ilu {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    rgba(110, 132, 255, 0.281),
    rgba(6, 38, 218, 0.219) 60% /* transparent 75% */
  );
  bottom: -20px;
  left: -80px;
  animation: floatCircle 18s ease-in-out infinite;
}

.circle-warning-ilu {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    rgba(240, 89, 19, 0.137),
    rgba(255, 169, 130, 0.425)
  );
  top: -45px;
  right: -95px;
  animation: floatCircleVariant 16s ease-in-out infinite;
}
/*  */
