/* ============================================
   SERVICE-IT-TALENT.CSS
   Estilos exclusivos para la página IT Talent on Demand
   Colores actualizados: fondos #D9DEE3, íconos/bordes #0A3D66
   ============================================ */

/* ============================================
   1. SECCIÓN DE PERFILES (FEATURED PROFILES)
   ============================================ */
.profile-section {
    background-color: #D9DEE3;
    padding: 80px 0;
}

/* Títulos de la sección */
.profile-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-section .section-header span {
    color: #0A3D66;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.profile-section .section-header h2 {
    color: var(--hexa-black);
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.profile-section .section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Tarjetas de perfiles */
.profile-card {
    background: transparent;
    border: 2px solid #0A3D66;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Efecto de brillo al hover */
.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 61, 102, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.profile-card:hover::before {
    left: 100%;
}

/* Efecto de elevación al hover */
.profile-card:hover {
    transform: translateY(-10px);
    border-color: #0A3D66;
    background: rgba(10, 61, 102, 0.03);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

/* Icono de la tarjeta */
.profile-icon {
    width: 70px;
    height: 70px;
    background: rgba(10, 61, 102, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-icon {
    background: #0A3D66;
    transform: scale(1.05);
}

.profile-icon i {
    font-size: 2rem;
    color: #0A3D66;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-icon i {
    color: white;
}

/* Título de la tarjeta */
.profile-card h4 {
    color: #0A3D66;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.profile-card:hover h4 {
    color: #0A3D66;
}

/* Descripción */
.profile-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Tags */
.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.profile-tags span {
    background: rgba(10, 61, 102, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #0A3D66;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.profile-card:hover .profile-tags span {
    background: #0A3D66;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   2. TABLA DE ENGAGEMENT MODELS
   ============================================ */
.engagement-table {
    background-color: var(--hexa-white);
    padding: 80px 0;
}

.engagement-table h2 {
    color: var(--text-dark);
}

.engagement-table p {
    color: var(--text-muted);
}

.engagement-table .table-premium {
    background: transparent;
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.engagement-table .table-premium thead th {
    background: var(--hexa-blue);
    color: white;
    font-weight: 700;
    padding: 1rem;
    border: none;
}

.engagement-table .table-premium tbody td {
    background: var(--hexa-white);
    color: var(--text-dark);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.engagement-table .table-premium tbody tr:hover td {
    background: rgba(10, 61, 102, 0.05);
}

.engagement-table .table-premium .text-orange {
    color: #0A3D66 !important;
    font-weight: 700;
}

/* ============================================
   3. DIFERENCIALES CLAVE
   ============================================ */
.differentiators-section {
    background-color: #D9DEE3;
    padding: 80px 0;
}

.differentiators-section h2 {
    color: var(--hexa-black);
}

.differentiators-section p {
    color: var(--text-muted);
}

.differentiators-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.differentiator-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid #0A3D66;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    background: rgba(10, 61, 102, 0.05);
    transform: translateX(8px);
    border-color: #0A3D66;
}

.differentiator-item i {
    font-size: 1.8rem;
    color: #0A3D66;
}

.differentiator-item strong {
    color: #0A3D66;
    font-size: 1rem;
}

.differentiator-item span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   4. AUDIENCE CARDS (Who Benefits Most)
   ============================================ */
.audience-section {
    background-color: var(--hexa-blue);
    padding: 80px 0;
}

.audience-section h2 {
    color: white;
}

.audience-section .audience-card {
    background: var(--hexa-white);
    border: none;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-section .audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #0A3D66;
}

.audience-section .audience-card i {
    font-size: 2.5rem;
    color: #0A3D66;
    margin-bottom: 1rem;
    display: block;
}

.audience-section .audience-card h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.audience-section .audience-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   5. CTA FINAL
   ============================================ */
.cta-section {
    background-color: var(--hexa-white);
    padding: 80px 0;
}

.cta-section .cta-premium {
    background: linear-gradient(135deg, var(--hexa-blue), var(--hexa-blue-dark));
    border: 1px solid rgba(10, 61, 102, 0.3);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
}

.cta-section .cta-premium h2,
.cta-section .cta-premium p {
    color: white;
}

.cta-section .cta-premium h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section .cta-premium p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .cta-section .cta-premium {
        padding: 2rem;
    }
    .cta-section .cta-premium h2 {
        font-size: 1.5rem;
    }
}