/* Faixa CIDE — acesso do evento (bem visivel no topo da landing) */
.cide-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #d91965, #ef405b);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(217, 25, 101, 0.35);
  position: relative;
  z-index: 60;
  transition: filter 160ms ease;
}
/* color:#fff explicito no hover: o `a:hover{color:pink}` global (tokens.css)
   sobrescreveria o branco (a faixa/CTA so tem color:#fff com especificidade fraca). */
.cide-banner:hover { filter: brightness(1.07); color: #fff; }
.cide-banner .cide-banner-txt b {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cide-banner-badge {
  background: rgba(255, 255, 255, 0.22);
  padding: 3px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cide-banner svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .cide-banner { font-size: 14px; padding: 12px 14px; gap: 8px; flex-wrap: wrap; }
}

/* Modal CIDE — boas-vindas do evento */
.cide-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 43, 78, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: cideFade 200ms ease;
}
.cide-modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(16, 43, 78, 0.30);
  animation: cidePop 240ms cubic-bezier(.2, .8, .2, 1);
}
.cide-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #9aa0a6;
  cursor: pointer;
}
.cide-modal-close:hover { color: #58595b; }
.cide-modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d91965, #ef405b);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
}
.cide-modal-title {
  font-size: 26px;
  font-weight: 800;
  color: #102b4e;
  letter-spacing: -0.02em;
  margin: 16px 0 10px;
}
.cide-modal-text {
  font-size: 15px;
  color: #58595b;
  line-height: 1.55;
  margin: 0 0 24px;
}
.cide-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #d91965, #ef405b);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(217, 25, 101, 0.30);
  transition: filter 160ms ease;
}
.cide-modal-cta:hover { filter: brightness(1.06); color: #fff; }
.cide-modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: none;
  border: none;
  color: #9aa0a6;
  font-size: 13px;
  cursor: pointer;
  padding: 6px;
}
.cide-modal-dismiss:hover { color: #58595b; }
@keyframes cideFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cidePop { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) {
  .cide-modal { padding: 32px 22px 22px; }
  .cide-modal-title { font-size: 22px; }
}
