/* Estilos para el Popup Publicitario de Trantor */

.trantor-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* Fondo blanco sólido sin blur */
  z-index: 1050; /* Bootstrap modals use 1050 */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.trantor-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.trantor-popup-card {
  background: #ffffff;
  border-radius: 32px;
  width: 80vw;
  height: 80vh;
  max-width: 1100px;
  max-height: 750px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.trantor-popup-overlay.active .trantor-popup-card {
  transform: scale(1);
}

.trantor-popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.trantor-popup-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

/* Header de la marca */
.trantor-popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.trantor-popup-logo-text {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #0c1a30;
  text-transform: uppercase;
  margin: 0;
  padding-left: 6px;
}

/* Título de la campaña */
.trantor-popup-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #0c1a30;
  margin: 0 0 36px 0;
  max-width: 850px;
}

/* Botón principal */
.trantor-popup-btn {
  background: #0f213d;
  color: #ffffff !important;
  border: none;
  border-radius: 9999px;
  padding: 18px 52px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 10px;
  margin-bottom: 40px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
  display: inline-block;
}

.trantor-popup-card:hover .trantor-popup-btn {
  background: #1d3152;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

/* Footer / Descripción legal */
.trantor-popup-footer {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  max-width: 760px;
}

.trantor-popup-footer b {
  color: #475569;
}

/* Responsividad para tabletas y móviles */
@media (max-width: 768px) {
  .trantor-popup-card {
    padding: 40px 24px;
    width: 90vw;
    height: 85vh;
  }
  .trantor-popup-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .trantor-popup-btn {
    padding: 14px 40px;
    font-size: 17px;
    margin-bottom: 24px;
  }
  .trantor-popup-footer {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .trantor-popup-title {
    font-size: 26px;
  }
}

