/* Chambify - paleta tecnológica (cyan + índigo, alineada al logo) */

.bg-cream {
    background-color: #F0F7FF;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Sustituye el naranja del template por cyan tecnológico */
.bg-yellow-500 {
    background-color: #0EA5E9;
}

.text-yellow-500 {
    color: #0EA5E9;
}

.border-yellow-500 {
    border-color: #6366F1;
}

.bg-yellow-100 {
    background-color: #E0F2FE;
}

.hover\:bg-yellow-100:hover {
    background-color: #E0F2FE;
}

/* Acento índigo para gradientes y detalles */
.bg-chambify-indigo {
    background-color: #6366F1;
}

.text-chambify-indigo {
    color: #6366F1;
}

.btn-chambify-gradient {
    background: linear-gradient(105.5deg, #0EA5E9 0%, #6366F1 100%);
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 8px); }
    100% { transform: translate(0, -0px); }
}

.floating-4 {
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.text-darken {
    color: #1E293B;
}

/* Formulario solicitud talento */
.talento-form-wrap {
    background: linear-gradient(160deg, #F0F7FF 0%, #E0E7FF 50%, #F0F7FF 100%);
}

.talento-form-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
}

.talento-form-header {
    background: linear-gradient(105deg, #0EA5E9 0%, #6366F1 100%);
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.talento-form-body {
    padding: 2rem;
}

.talento-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6366F1;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E0E7FF;
}

.form-label-chambify {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.35rem;
}

.form-label-chambify span.req {
    color: #0EA5E9;
}

.form-hint {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.2rem;
}

.form-input-chambify {
    width: 100%;
    border: 1.5px solid #E2E8F0;
    border-radius: 0.65rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input-chambify:focus {
    outline: none;
    border-color: #0EA5E9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1.5px solid #E2E8F0;
    background: #f8fafc;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0.2rem;
}

.skill-chip.selected {
    background: linear-gradient(105deg, #0EA5E9, #6366F1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.skill-chip input {
    display: none;
}

.skill-category-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    margin: 0.75rem 0 0.35rem;
}

.estrellas-activas {
    color: #0EA5E9;
    letter-spacing: 0.05em;
}
