.encuesta-section { min-height: calc(100vh - 76px); }
.encuesta-section .section-head { max-width: 920px; margin-left: auto; margin-right: auto; }
.encuesta-section h1 { margin: 0 auto; max-width: 920px; font-size: clamp(38px, 6vw, 76px); text-align: center; }
.poll-head-text { max-width: 780px; margin: 18px auto 0; color: var(--muted); line-height: 1.7; text-align: center; }
.poll-page-grid { display: grid; gap: 24px; max-width: 980px; margin: 0 auto; }
.poll-notice { max-width: 980px; margin: -10px auto 22px; padding: 14px 18px; border: 1px solid rgba(80,255,150,.35); border-radius: 18px; color: #fff; background: rgba(80,255,150,.10); box-shadow: 0 0 24px rgba(80,255,150,.08); }
.poll-notice i { color: #6cff9f; margin-right: 8px; }
.poll-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; padding: clamp(22px, 3vw, 34px); background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035)); box-shadow: 0 0 58px rgba(255,35,79,.10), inset 0 0 30px rgba(255,255,255,.035); }
.poll-card::before { content: ""; position: absolute; inset: -40% auto auto -15%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255,35,79,.18), transparent 62%); pointer-events: none; }
.poll-image-wrap { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; margin: 0 0 22px; background: rgba(255,255,255,.04); }
.poll-image-wrap img { display: block; width: 100%; max-height: 420px; object-fit: contain; }
.poll-card-top { position: relative; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.poll-status, .poll-total { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 0 13px; border-radius: 999px; font-size: 12px; font-weight: 900; letter-spacing: 1px; }
.poll-status.active { background: rgba(255,35,79,.20); border: 1px solid rgba(255,35,79,.45); color: #fff; }
.poll-status.closed { background: rgba(255,255,255,.08); border: 1px solid var(--line); color: var(--muted); }
.poll-total { background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--muted); }
.poll-card h2 { position: relative; font-size: clamp(26px, 4vw, 44px); line-height: 1.05; letter-spacing: -1px; margin-bottom: 22px; }
.poll-voted-box { position: relative; display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; padding: 12px 14px; border-radius: 16px; border: 1px solid rgba(80,255,150,.28); background: rgba(80,255,150,.09); color: #f8fff9; }
.poll-voted-box i { color: #6cff9f; }
.poll-voted-box.closed { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: var(--muted); }
.poll-voted-box.closed i { color: var(--muted); }
.poll-options { position: relative; display: grid; gap: 13px; }
.poll-option { position: relative; min-height: 66px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; overflow: hidden; padding: 12px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.035); color: #fff; }
.poll-option-fill { position: absolute; inset: 0 auto 0 0; width: 0; min-width: 4px; background: linear-gradient(90deg, rgba(255,35,79,.34), rgba(255,35,79,.10)); border-right: 1px solid rgba(255,35,79,.28); transition: width .55s ease; }
.poll-option-main, .poll-option strong, .poll-option em { position: relative; z-index: 1; }
.poll-option-main { display: grid; gap: 4px; min-width: 0; }
.poll-option-main b { font-size: 18px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.poll-option-main small { color: var(--muted); }
.poll-option strong { min-width: 62px; text-align: right; font-size: 20px; }
.poll-option em { grid-column: 1 / -1; width: fit-content; padding: 6px 10px; border-radius: 999px; color: #fff; background: rgba(255,35,79,.18); border: 1px solid rgba(255,35,79,.36); font-style: normal; font-size: 12px; font-weight: 900; }
.vote-option { cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.vote-option:hover { transform: translateY(-2px); border-color: rgba(255,35,79,.62); background: rgba(255,35,79,.08); box-shadow: 0 0 24px rgba(255,35,79,.12); }
.result-option.selected { border-color: rgba(255,35,79,.62); box-shadow: 0 0 28px rgba(255,35,79,.10); }
.poll-login-help { margin: 16px 2px 0; color: var(--muted); font-size: 13px; }
.poll-login-help i { color: #5865f2; margin-right: 6px; }
@media (max-width: 650px) {
  .poll-option { grid-template-columns: 1fr; align-items: start; }
  .poll-option strong { text-align: left; }
  .poll-option-main b { white-space: normal; }
}


/* Ajuste 30% más compacto para la ventana de encuesta */
.poll-page-grid { max-width: 686px; gap: 17px; }
.poll-notice { max-width: 686px; margin: -8px auto 16px; padding: 10px 13px; border-radius: 13px; }
.poll-card { border-radius: 22px; padding: clamp(16px, 2.2vw, 24px); box-shadow: 0 0 40px rgba(255,35,79,.09), inset 0 0 22px rgba(255,255,255,.03); }
.poll-card::before { width: 294px; height: 294px; }
.poll-image-wrap { border-radius: 17px; margin: 0 0 15px; }
.poll-image-wrap img { max-height: 294px; }
.poll-card-top { gap: 8px; margin-bottom: 12px; }
.poll-status, .poll-total { min-height: 28px; padding: 0 10px; font-size: 10px; }
.poll-status.ended { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: var(--muted); }
.poll-end-date { position: relative; display: inline-flex; align-items: center; gap: 7px; margin: 0 0 11px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.045); color: var(--muted); font-size: 12px; }
.poll-end-date i { color: var(--red); }
.poll-end-date b { color: #fff; }
.poll-card h2 { font-size: clamp(20px, 3vw, 31px); margin-bottom: 15px; letter-spacing: -.6px; }
.poll-voted-box { margin: 0 0 13px; padding: 8px 10px; border-radius: 12px; font-size: 13px; }
.poll-options { gap: 9px; }
.poll-option { min-height: 46px; gap: 10px; padding: 9px 12px; border-radius: 14px; }
.poll-option-main { gap: 3px; }
.poll-option-main b { font-size: 14px; }
.poll-option-main small { font-size: 11px; }
.poll-option strong { min-width: 48px; font-size: 15px; }
.poll-option em { padding: 5px 8px; font-size: 10px; }
.poll-login-help { margin: 11px 2px 0; font-size: 12px; }
@media (max-width: 650px) {
  .poll-page-grid, .poll-notice { max-width: 100%; }
}
