/*banner.css*/


/* ============================ Banner universal ============================ */
.banner {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.banner.visible {
  display: flex;
}

.banner-content {
  background: rgba(20,20,20,0.95);
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  color: var(--dorado);
  width: 95%;
  max-width: 300px;
  min-height: 220px;
  max-height: 80%;
  margin: 0 auto;
  overflow-y: auto;
  box-shadow: 0 0 25px rgba(212,175,55,0.4);
  border: 1px solid rgba(212,175,55,0.35);
  animation: fadeIn 0.4s ease;
}

/* Animación */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Título */
.banner-content h2 {
  margin-top: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dorado);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

/* ============================ Perfil sin foto ============================ */
.conecta-profile {
  margin: 20px 0;
  text-align: center;
}

.conecta-nombre {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dorado);
  margin-bottom: 5px;
  text-transform: capitalize;
}

.conecta-cargo {
  font-size: 1rem;
  color: #f5f5f5;
  margin-bottom: 15px;
}

/* Botón cerrar */
.btn-cerrar {
  margin-top: 25px;
  background: transparent;
  border: 1px solid var(--dorado);
  color: var(--dorado);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.btn-cerrar:hover {
  background: var(--dorado);
  color: var(--negro);
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
}

/* ============================ BOTONES DE CONTACTO ============================ */
.conecta-btn {
  display: inline-block;
  margin: 12px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.4);
  color: #f5f5f5; /* texto claro */
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.conecta-btn:hover {
  background: rgba(212,175,55,0.15);
  color: var(--dorado);
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}


/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .banner-content {
    width: 90%;
    padding: 25px;
  }
}