.fullscreen-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
}

.strength-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* Ya lo tienes */
  gap: 30px;
}


.col-md-6 {
  flex: 1 1 48%;
  min-width: 300px;
  align-self: flex-start;
}

.strength-chart-container {
  width: 100%;
}

.strength-card-highlight {
  border-radius: 12px;
  padding: 20px;
  /* background-color: #fff; */
}

.strength-red-title {
  color: #BD0016 !important;
  font-weight: bold;
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.strength-description {
  text-align: left;
  margin-bottom: 25px;
  font-size: 19px;
  line-height: 1.8;
}

.strength-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.strength-animated-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.3;
}

.strength-animated-item.strength-visible {
  opacity: 1;
  transform: translateX(0);
}

.strength-check {
  color: #BD0016;
  font-weight: bold;
  margin-right: 6px;
  font-size: 18px;
}

.strength-footer-text {
  margin-top: 40px;
  color: #000000;
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .strength-row {
    flex-direction: column;
    align-items: center;
  }
  .col-md-6 {
    width: 100%;
  }
}

.strength-chart-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2; /* Proporción ancho/alto: 3:2 */
  max-height: 600px;   /* Altura máxima en pantallas grandes */
}

.strength-chart-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.strength-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.strength-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}