/* Vota Cidadão - Barra do Rocha 2028 */
/* Design PROFISSIONAL - Cores Vivas e Chamativo */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #1a5f7a;
    --cor-secundaria: #2c8eb8;
    --cor-destaque: #00a8cc;
    --cor-acento: #0d7377;
    --cor-viva-1: #ff6b35;
    --cor-viva-2: #f7931e;
    --cor-viva-3: #ffd700;
    --cor-viva-4: #00d4aa;
    --cor-texto: #2c3e50;
    --cor-texto-claro: #7f8c8d;
    --cor-fundo: #f8f9fa;
    --cor-fundo-secundario: #ffffff;
    --cor-branco: #ffffff;
    --cor-borda: #e9ecef;
    --cor-sucesso: #27ae60;
    --cor-erro: #e74c3c;
    --cor-warning: #f39c12;
    --sombra-leve: 0 2px 8px rgba(0,0,0,0.08);
    --sombra-media: 0 4px 16px rgba(0,0,0,0.12);
    --sombra-forte: 0 8px 32px rgba(0,0,0,0.16);
    --sombra-hover: 0 12px 48px rgba(26,95,122,0.25);
    --transicao: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradiente-primario: linear-gradient(135deg, #1a5f7a 0%, #2c8eb8 50%, #00a8cc 100%);
    --gradiente-secundario: linear-gradient(135deg, #2c8eb8 0%, #00a8cc 100%);
    --gradiente-vivo: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    --gradiente-destaque: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--cor-fundo);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(26,95,122,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44,142,184,0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255,107,53,0.03) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--cor-texto);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   HEADER PROFISSIONAL E IMPACTANTE
   ============================================ */
.cabecalho {
    background: var(--gradiente-primario);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--cor-viva-3);
}

.cabecalho::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%),
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: shimmer-bg 8s ease-in-out infinite;
}

@keyframes shimmer-bg {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.cabecalho-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.cabecalho-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.cabecalho-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.cabecalho-logo {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
    transition: var(--transicao);
    background: rgba(255,255,255,0.15);
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cabecalho-logo:hover {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.cabecalho-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cabecalho-brand h1 {
    color: var(--cor-branco);
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cabecalho-brand h1::after {
    content: '🗳️';
    margin-left: 0.5rem;
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    animation: bounce-emoji 2s ease-in-out infinite;
}

@keyframes bounce-emoji {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.cabecalho-brand .subtitulo {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cabecalho-badge {
    background: linear-gradient(135deg, rgba(255,215,0,0.95) 0%, rgba(255,193,7,0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #856404;
    font-size: 1rem;
    font-weight: 800;
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    transition: var(--transicao);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cabecalho-badge:hover {
    background: linear-gradient(135deg, rgba(255,255,0,0.95) 0%, rgba(255,215,0,0.95) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255,215,0,0.6);
}

.cabecalho-badge span:first-child {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cabecalho-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.3);
    position: relative;
}

.cabecalho-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradiente-vivo);
    border-radius: 2px;
}

.cabecalho-contador-votos {
    background: linear-gradient(135deg, rgba(255,215,0,0.95) 0%, rgba(255,193,7,0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 1.25rem 2rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 24px rgba(255,215,0,0.4);
    animation: pulse-contador 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cabecalho-contador-votos::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: rotate-glow 4s linear infinite;
}

@keyframes pulse-contador {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255,215,0,0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 32px rgba(255,215,0,0.6);
    }
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contador-votos-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.contador-votos-content {
    position: relative;
    z-index: 1;
}

.contador-votos-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #856404;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.contador-votos-numero {
    font-size: 3rem;
    font-weight: 900;
    color: #856404;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4), 0 0 20px rgba(255,215,0,0.6);
    letter-spacing: -1px;
    animation: count-up 1s ease-out;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.3);
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.5);
    box-shadow: inset 0 2px 8px rgba(255,255,255,0.3), 0 4px 16px rgba(0,0,0,0.2);
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cabecalho-info-text {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-weight: 600;
}

.cabecalho-info-text span:first-child {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
.container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CARDS MELHORADOS COM CORES VIVAS
   ============================================ */
.card {
    background: var(--cor-branco);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 3.5rem;
    margin-bottom: 3rem;
    transition: var(--transicao);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradiente-vivo);
    opacity: 0;
    transition: var(--transicao);
    border-radius: 24px 24px 0 0;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    transform: translateY(-8px);
    border-color: var(--cor-viva-1);
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    opacity: 1;
}

/* ============================================
   DESCRIÇÃO PESQUISA
   ============================================ */
.descricao-pesquisa {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 6px solid var(--cor-viva-3);
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    border-radius: 20px;
    font-size: 1.05rem;
    color: #856404;
    box-shadow: 0 6px 24px rgba(255,193,7,0.2);
    position: relative;
    animation: slideInLeft 0.6s ease-out;
    line-height: 1.8;
}

.descricao-pesquisa::before {
    display: none;
}

.descricao-pesquisa::after {
    content: 'ℹ️';
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 0.75rem;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.descricao-pesquisa p,
.descricao-pesquisa {
    margin-left: 0;
    padding-left: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   FORMULÁRIO
   ============================================ */
.formulario-pesquisa {
    margin-top: 1.5rem;
}

.pergunta-grupo {
    margin-bottom: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 3px solid var(--cor-borda);
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
    position: relative;
}

.pergunta-grupo::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradiente-destaque);
    transition: width 0.6s ease;
}

.pergunta-grupo:hover::before {
    width: 100%;
}

.pergunta-grupo:nth-child(1) { animation-delay: 0.1s; }
.pergunta-grupo:nth-child(2) { animation-delay: 0.2s; }
.pergunta-grupo:nth-child(3) { animation-delay: 0.3s; }
.pergunta-grupo:nth-child(4) { animation-delay: 0.4s; }
.pergunta-grupo:nth-child(5) { animation-delay: 0.5s; }
.pergunta-grupo:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pergunta-grupo:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.pergunta-titulo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cor-primaria);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, rgba(26,95,122,0.08) 0%, rgba(44,142,184,0.05) 50%, transparent 100%);
    border-left: 6px solid var(--cor-destaque);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pergunta-titulo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gradiente-destaque);
    border-radius: 16px 0 0 16px;
}

.pergunta-titulo .icone {
    font-size: 2.5rem;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.opcoes-lista {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.opcao-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    border: 3px solid var(--cor-borda);
    border-radius: 18px;
    cursor: pointer;
    transition: var(--transicao);
    background: var(--cor-branco);
    position: relative;
    overflow: hidden;
}

.opcao-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gradiente-destaque);
    transform: scaleY(0);
    transition: var(--transicao);
    border-radius: 18px 0 0 18px;
}

.opcao-item:hover {
    border-color: var(--cor-destaque);
    box-shadow: 0 8px 24px rgba(44,142,184,0.25);
    transform: translateX(12px);
    background: linear-gradient(90deg, rgba(0,212,170,0.08) 0%, transparent 100%);
}

.opcao-item:hover::before {
    transform: scaleY(1);
}

.opcao-item input[type="radio"] {
    margin-top: 0.3rem;
    width: 26px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--cor-destaque);
}

.opcao-item label {
    flex: 1;
    cursor: pointer;
    font-size: 1.15rem;
    color: var(--cor-texto);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 600;
}

.opcao-item.foto-opcao {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.opcao-foto-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.opcao-foto,
.opcao-foto-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cor-borda);
    transition: var(--transicao);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.opcao-foto-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradiente-primario);
    border-color: var(--cor-destaque);
    position: relative;
    overflow: hidden;
}

.opcao-foto-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.opcao-foto-placeholder-initials {
    font-size: 3rem;
    font-weight: 900;
    color: var(--cor-branco);
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.95;
    }
}

.opcao-item:hover .opcao-foto-placeholder {
    border-color: var(--cor-viva-4);
    transform: scale(1.15);
    box-shadow: 0 10px 32px rgba(0,212,170,0.4);
}

.opcao-item:hover .opcao-foto {
    border-color: var(--cor-destaque);
    transform: scale(1.15);
    box-shadow: 0 10px 32px rgba(44,142,184,0.4);
}

.opcao-foto[src]:not([src=""]) {
    display: block;
}

.opcao-foto[src]:not([src=""]) ~ .opcao-foto-placeholder,
.opcao-foto-wrapper:has(.opcao-foto[src]:not([src=""])) .opcao-foto-placeholder {
    display: none !important;
}

.opcao-foto[src=""],
.opcao-foto:not([src]) {
    display: none;
}

.opcao-foto-placeholder.hidden {
    display: none !important;
}

.opcao-foto-wrapper:not(:has(.opcao-foto[src]:not([src=""]))) .opcao-foto-placeholder:not(.hidden) {
    display: flex;
}

.complemento-input {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 3px solid var(--cor-borda);
    border-radius: 14px;
    font-size: 1.05rem;
    font-family: inherit;
    display: none;
    transition: var(--transicao);
    background: var(--cor-fundo);
}

.complemento-input.ativo {
    display: block;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.complemento-input:focus {
    outline: none;
    border-color: var(--cor-destaque);
    box-shadow: 0 0 0 5px rgba(0,212,170,0.15);
    background: var(--cor-branco);
}

/* ============================================
   BOTÃO ENVIAR MELHORADO
   ============================================ */
.botao-enviar {
    background: var(--gradiente-vivo);
    color: var(--cor-branco);
    padding: 2rem 4rem;
    font-size: 1.3rem;
    font-weight: 900;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    width: 100%;
    transition: var(--transicao);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    box-shadow: 0 8px 32px rgba(255,107,53,0.4);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    border: 3px solid rgba(255,255,255,0.3);
}

.botao-enviar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.8s, height 0.8s;
}

.botao-enviar:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ffaa00 50%, #ffd700 100%);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255,107,53,0.5);
    letter-spacing: 4px;
    border-color: rgba(255,255,255,0.5);
}

.botao-enviar:hover::before {
    width: 600px;
    height: 600px;
}

.botao-enviar:active {
    transform: translateY(-3px);
}

.botao-enviar:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================
   MENSAGEM DE SUCESSO
   ============================================ */
.mensagem-sucesso {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    margin: 2rem 0;
    border: 4px solid #c3e6cb;
    font-size: 1.2rem;
    box-shadow: 0 12px 40px rgba(39,174,96,0.3);
    animation: bounceIn 0.8s ease-out;
}

.mensagem-sucesso h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 900;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* ============================================
   RODAPÉ PROFISSIONAL COM WHATSAPP
   ============================================ */
.rodape {
    background: linear-gradient(135deg, #1a5f7a 0%, #2c8eb8 50%, #00a8cc 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 5rem;
    border-top: 5px solid var(--cor-viva-3);
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.rodape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,215,0,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.rodape-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.rodape-info {
    margin-bottom: 2.5rem;
}

.rodape-info .site-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cor-branco);
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rodape-info .copyright {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 600;
}

.rodape .empresa {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rodape .empresa .desenvolvedor {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

.rodape .empresa .robson-host {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(37,211,102,0.95) 0%, rgba(25,175,87,0.95) 100%);
    color: var(--cor-branco);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transicao);
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    border: 3px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.rodape .empresa .robson-host::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.rodape .empresa .robson-host:hover {
    background: linear-gradient(135deg, rgba(46,231,112,0.95) 0%, rgba(37,211,102,0.95) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 36px rgba(37,211,102,0.6);
    letter-spacing: 2px;
}

.rodape .empresa .robson-host:hover::before {
    left: 100%;
}

.rodape .empresa .robson-host .whatsapp-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* ============================================
   ALERTAS
   ============================================ */
.alert {
    padding: 1.75rem;
    border-radius: 18px;
    margin-bottom: 2.5rem;
    box-shadow: var(--sombra-media);
    animation: slideInRight 0.5s ease-out;
    font-weight: 600;
    border: 3px solid;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-erro {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-sucesso {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #c3e6cb;
}

/* ============================================
   LOADING
   ============================================ */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--cor-branco);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 768px) {
    .cabecalho-content {
        padding: 2rem 1.5rem;
    }
    
    .cabecalho-brand h1 {
        font-size: 1.8rem;
    }
    
    .cabecalho-top {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cabecalho-logo-wrapper {
        justify-content: center;
        width: 100%;
    }
    
    .cabecalho-logo {
        max-width: 90px;
        margin: 0 auto;
    }
    
    .cabecalho-brand {
        width: 100%;
    }
    
    .cabecalho-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .cabecalho-info {
        padding-top: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cabecalho-contador-votos {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .contador-votos-icon {
        font-size: 2.5rem;
    }
    
    .contador-votos-numero {
        font-size: 2.25rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contador-votos-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .cabecalho-info-text {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .pergunta-titulo {
        font-size: 1.1rem;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .opcao-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .opcao-texto {
        font-size: 0.95rem;
    }
    
    .botao-enviar {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    
    .descricao-pesquisa {
        padding: 1.5rem 1.25rem;
        margin-bottom: 2rem;
        font-size: 0.95rem;
        border-radius: 16px;
    }
    
    .descricao-pesquisa::after {
        font-size: 1.25rem;
        margin-right: 0.5rem;
    }
    
    .descricao-pesquisa p,
    .descricao-pesquisa {
        margin-left: 0;
        padding-left: 0;
    }
    
    .opcao-foto-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .opcao-foto,
    .opcao-foto-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .rodape {
        padding: 3rem 1.5rem;
    }
    
    .rodape .empresa .robson-host {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cabecalho-content {
        padding: 1.25rem 0.875rem;
    }
    
    .cabecalho-brand h1 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .cabecalho-brand .subtitulo {
        font-size: 0.9rem;
    }
    
    .cabecalho-logo {
        max-width: 75px;
    }
    
    .cabecalho-badge {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        max-width: 100%;
    }
    
    .cabecalho-info {
        padding-top: 1.25rem;
        gap: 0.875rem;
    }
    
    .cabecalho-contador-votos {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
    }
    
    .contador-votos-icon {
        font-size: 2rem;
    }
    
    .contador-votos-content {
        text-align: left;
    }
    
    .contador-votos-numero {
        font-size: 1.9rem;
        padding: 0.35rem 0.7rem;
        border-radius: 10px;
    }
    
    .contador-votos-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 0.35rem;
    }
    
    .cabecalho-info-text {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
        width: 100%;
    }
    
    .cabecalho-info-text span:first-child {
        font-size: 1.25rem;
    }
    
    .container {
        margin: 1.25rem auto;
        padding: 0 0.875rem;
    }
    
    .card {
        padding: 1.25rem;
        border-radius: 18px;
    }
    
    .pergunta-titulo {
        font-size: 1rem;
        padding: 0.875rem;
        gap: 0.625rem;
    }
    
    .pergunta-titulo .icone {
        font-size: 1.25rem;
    }
    
    .opcao-item {
        padding: 0.875rem;
        gap: 0.875rem;
    }
    
    .opcao-texto {
        font-size: 0.9rem;
    }
    
    .opcao-foto-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .opcao-foto,
    .opcao-foto-placeholder {
        width: 70px;
        height: 70px;
    }
    
    .opcao-foto-placeholder-initials {
        font-size: 2.5rem;
    }
    
    .botao-enviar {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 1px;
        border-radius: 16px;
    }
    
    .descricao-pesquisa {
        padding: 1.25rem 1rem;
        margin-bottom: 1.75rem;
        font-size: 0.875rem;
        border-radius: 14px;
    }
    
    .descricao-pesquisa::after {
        font-size: 1.1rem;
        margin-right: 0.5rem;
    }
    
    .descricao-pesquisa p,
    .descricao-pesquisa {
        margin-left: 0;
        padding-left: 0;
        line-height: 1.6;
    }
    
    .mensagem-sucesso {
        padding: 3rem 2rem;
    }
    
    .mensagem-sucesso h2 {
        font-size: 2rem;
    }
    
    .rodape {
        padding: 2rem 1rem;
        margin-top: 2.5rem;
    }
    
    .rodape-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .rodape-info {
        margin-bottom: 1.5rem;
    }
    
    .rodape-info .site-name {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .rodape-info .copyright {
        font-size: 0.85rem;
    }
    
    .rodape .empresa {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .rodape .empresa .desenvolvedor {
        font-size: 0.95rem;
    }
    
    .rodape .empresa .robson-host {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}
