/* ==========================================
   Bienestar corporativo — landing
   ========================================== */

.corp-page,
.home-wellness-section {
    --corp-green-dark: #2d5544;
    --corp-green-soft: #dbeccd;
}

.corp-page {
    --corp-gradient: linear-gradient(135deg, #f3faf0 0%, #dbeccd 45%, #f9fafb 100%);
    padding-bottom: 48px;
}

.corp-section {
    margin-bottom: 72px;
}

.corp-section--lead,
.home-wellness-section {
    padding-top: 8px;
}

.home-wellness-section {
    margin-bottom: 72px;
}

.corp-section--last {
    margin-bottom: 0;
}

.corp-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.corp-section-header h1,
.corp-section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--corp-green-dark);
    margin-bottom: 12px;
}

.corp-section-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.corp-section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.65;
}

/* Category showcase */
.corp-category-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.corp-category-card {
    background: var(--white);
    border-radius: 16px;
    padding: clamp(24px, 4vw, 32px);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.25s ease;
}

.corp-category-card:hover {
    box-shadow: var(--shadow-lg);
}

.corp-category-card h2 {
    font-size: 1.35rem;
    color: var(--corp-green-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.corp-category-card > p {
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.corp-products-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 16px;
}

.corp-category-products {
    margin-bottom: 0;
}

.corp-category-products .product-card {
    height: 100%;
}

.corp-category-products .product-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px;
    padding: 0 20px;
}

.corp-category-products .product-card-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--corp-green-dark);
    background: var(--corp-green-soft);
    border: 1px solid rgba(45, 85, 68, 0.15);
    border-radius: 999px;
    padding: 4px 10px;
}

/* Teams */
.corp-teams-section {
    background: var(--background);
    border-radius: 20px;
    padding: 48px clamp(20px, 4vw, 48px);
}

.corp-teams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.corp-team-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--primary-color);
}

.corp-team-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.corp-team-card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 12px;
}

.corp-team-product-link {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.corp-team-product-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.corp-team-product-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .corp-teams-grid {
        grid-template-columns: 1fr;
    }

    .corp-category-products {
        grid-template-columns: 1fr;
    }
}
