/* Roles wrapper */
.roles-wrapper {
    background: linear-gradient(135deg, #fbf5ff 35%, #effcf8 100%);
    padding-top: 48px;
}

/* Hero */
.roles-hero-texto h1 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    padding-left: 60px;
}

.roles-hero-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #808080;
    line-height: 1.5;
    margin: 20px 60px;
}

/* Roles */
.roles {
    margin: 0 60px;
    text-align: center;
    padding-bottom: 80px;
}

.roles > h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #41474f;
    margin-bottom: 8px;
}

.roles-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.roles-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    text-align: left;
    border: 1.5px solid #E5E7EB;
}

.roles-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
}

.roles-card-header svg {
    color: #6f2e98;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.roles-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
}

.roles-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #808080;
    padding-bottom: 15px;
}

.roles-card-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.roles-card-list p{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #808080;
    margin: 0; 
    padding: 2px 0;
}

.btn-rol {
    display: block;
    margin-top: 20px;
    background: #6f2e98;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    transition: all 0.2s;
}

.btn-rol:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}