.industria-main {
    background-color: #2a3f54;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.industria-section {
    width: 100%;
    max-width: 1000px;
}

.industria-container {
    background-color: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.industria-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.industria-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
}

.industria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industria-card {
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #334155;
    position: relative;
    overflow: hidden;
}

.industria-card:hover {
    border-color: #22c55e;
    background-color: #f0fdf4;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.3);
}

.industria-card.selected {
    border-color: #22c55e;
    background-color: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.industria-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #22c55e;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.industria-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.8rem auto;
    transition: transform 0.3s ease;
}

.industria-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.industria-card:hover .industria-icon svg {
    transform: scale(1.05);
}

.industria-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.industria-preguntas {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 4px;
}

.industria-card:hover .industria-preguntas {
    color: #16a34a;
}

/* Responsive */
@media (max-width: 768px) {
    .industria-container {
        padding: 30px 20px;
    }

    .industria-title {
        font-size: 1.8rem;
    }

    .industria-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .industria-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industria-card {
        padding: 25px 20px;
    }
}
