.banner {
  width: 100%;
  padding-top: calc(120px + var(--notification-bar-height, 0px));
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.banner-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.banner-content {
  flex: 1;
  padding: 40px 0;
  position: relative;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: bold;
  color: var(--principal, #030e22);
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-content p {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--gradient-shadow);
}

.banner-cta:hover {
  background: var(--gradient-primary-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gradient-shadow-hover);
}

.banner-image {
  flex: 1;
  text-align: center;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Nuevos elementos promocionales */
.banner-badge {
  margin-bottom: 15px;
}

.new-course-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px var(--gradient-shadow);
}

.banner-credentials {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gradient-primary, #00a9c5);
  font-size: 14px;
  font-weight: 600;
}

.credential-item i {
  font-size: 16px;
}

.banner-benefits {
  margin: 20px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #555;
  font-size: 15px;
}

.benefit-item i {
  color: #28a745;
  font-size: 16px;
  min-width: 16px;
}

.banner-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  color: #856404;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #ffc107;
  font-size: 14px;
}

.banner-urgency i {
  color: #ffc107;
  animation: tick 1s infinite;
}

.banner-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.banner-cta.primary {
  background: var(--gradient-primary);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--gradient-shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.banner-cta.primary:hover {
  background: var(--gradient-primary-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gradient-shadow-hover);
}

.banner-cta.secondary {
  background: transparent;
  color: var(--principal, #030e22);
  padding: 15px 30px;
  border: 2px solid var(--principal, #030e22);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.banner-cta.secondary:hover {
  background: var(--principal, #030e22);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Animaciones */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes tick {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

/*=============================================
  TABLET (MD - hasta 991px)
===============================================*/
@media (max-width: 991px) {
  .banner {
    padding-top: calc(80px + var(--notification-bar-height, 0px));
  }

  .banner-container {
    gap: 30px;
    padding: 20px 0 20px 15px;
  }

  .banner-content h1 {
    font-size: 40px;
  }

  .banner-content p {
    font-size: 18px;
  }
}

/*=============================================
  TABLET PEQUEÑA (SM - hasta 767px)
===============================================*/
@media (max-width: 767px) {
  .banner {
    padding-top: calc(80px + var(--notification-bar-height, 0px));
    min-height: auto;
  }

  .banner-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 20px 0 20px 20px;
  }

  .banner-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .banner-credentials {
    justify-content: center;
    gap: 15px;
  }

  .credential-item {
    font-size: 13px;
  }

  .banner-benefits {
    margin: 15px 0;
  }

  .benefit-item {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .banner-urgency {
    font-size: 13px;
    padding: 10px 12px;
    text-align: center;
  }

  .banner-actions {
    justify-content: center;
    gap: 12px;
  }

  .banner-cta.primary,
  .banner-cta.secondary {
    padding: 12px 20px;
    font-size: 15px;
    flex: 1;
    max-width: 160px;
  }

  .banner-image {
    order: 2;
  }

  .banner-image img {
    max-width: 90%;
  }
}

/*=============================================
  MÓVIL (XS - hasta 575px)
===============================================*/
@media (max-width: 575px) {
  .banner {
    padding-top: calc(80px + var(--notification-bar-height, 0px));
  }

  .banner-container {
    padding: 20px 0 20px 15px;
    gap: 25px;
  }

  .banner-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .banner-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .banner-credentials {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .banner-actions {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .banner-cta.primary,
  .banner-cta.secondary {
    padding: 10px 15px;
    font-size: 14px;
    flex: 1;
    justify-content: center;
    max-width: 150px;
  }

  .banner-image img {
    max-width: 95%;
  }
}

/*=============================================
  MÓVIL PEQUEÑO (hasta 480px)
===============================================*/
@media (max-width: 480px) {
  .banner {
    padding-top: calc(80px + var(--notification-bar-height, 0px));
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-cta {
    padding: 8px 16px;
    font-size: 14px;
  }
}
