/* Banner de consentimiento de cookies — Agenc-IA */
#cc-banner, #cc-reopen {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}
#cc-banner *, #cc-reopen * {
  box-sizing: border-box;
}

#cc-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #191544;
  color: #f2f2fa;
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

#cc-banner .cc-text {
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.5;
  color: #d7d6e6;
  margin: 0;
}

#cc-banner .cc-text a {
  color: #00C587;
  text-decoration: underline;
}

#cc-banner .cc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cc-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.cc-btn-accept {
  background: #00C587;
  color: #ffffff;
}

.cc-btn-reject {
  background: transparent;
  color: #f2f2fa;
  border: 1px solid rgba(255,255,255,0.35);
}

#cc-reopen {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 99998;
  background: #191544;
  color: #f2f2fa;
  border: none;
  border-radius: 30px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: none;
  align-items: center;
  gap: 6px;
}

#cc-reopen.cc-visible {
  display: inline-flex;
}

@media (max-width: 560px) {
  #cc-banner {
    padding: 16px;
  }
  #cc-banner .cc-actions {
    width: 100%;
  }
  #cc-banner .cc-actions .cc-btn {
    flex: 1;
  }
}
