.aprendamos-captcha-icon-captcha {
margin: 15px 0;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
background: #f9f9f9;
}

.aprendamos-captcha-prompt {
margin-bottom: 10px;
font-size: 14px;
color: #333;
}

.aprendamos-captcha-grid {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}

.aprendamos-captcha-item {
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
padding: 8px;
cursor: pointer;
transition: all 0.2s;
}

.aprendamos-captcha-item:hover {
border-color: #0073aa;
box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.aprendamos-captcha-item.selected {
border-color: #0073aa;
background: #f0f8ff;
box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
}

.aprendamos-captcha-honeypot {
display: none !important;
height: 0;
width: 0;
opacity: 0;
filter: alpha(opacity=0);
}