/**
 * Modulo Time Comercial - Home CINNDI
 */

.time-home {
    padding: 100px 0;
    background: #f0f9ff;
}

.time-home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 48px;
    align-items: center;
}

.time-home-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.18);
    color: #0369a1;
    font-size: 0.85rem;
    font-weight: 700;
}

.time-home-badge svg {
    width: 18px;
    height: 18px;
}

.time-home-title {
    margin: 20px 0 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: #0f172a;
}

.time-home-title span {
    color: #0f766e;
}

.time-home-description {
    margin-bottom: 0;
    color: #475569;
    font-size: 1.06rem;
    line-height: 1.75;
}

.time-home-grid-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0 30px;
}

.time-home-feature {
    padding: 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.08);
}

.time-home-feature strong {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 0.95rem;
}

.time-home-feature span {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.5;
}

.time-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.time-home-link-primary,
.time-home-link-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.time-home-link-primary {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #ffffff;
}

.time-home-link-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(15, 118, 110, 0.22);
}

.time-home-link-secondary {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

.time-home-link-secondary:hover {
    color: #0f172a;
    transform: translateY(-2px);
}

.time-home-board {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.22);
}

.time-home-board-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.time-home-board-header strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.time-home-board-header span,
.time-home-footer-note {
    color: #cbd5e1;
    font-size: 0.92rem;
}

.time-home-flow {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 6px;
}

.time-home-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 90px;
    text-align: center;
}

.time-home-flow-item span {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
}

.time-home-flow-item--final {
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.25);
}

.time-home-flow-item--final span {
    color: #6ee7b7;
}

.time-home-flow-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e, #2563eb);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
}

.time-home-flow-arrow {
    color: #475569;
    font-size: 1.1rem;
    padding: 0 6px;
}

.time-home-footer-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(14, 165, 233, 0.14);
}

@media (max-width: 968px) {
    .time-home-container {
        grid-template-columns: 1fr;
    }

    .time-home-grid-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .time-home {
        padding: 80px 0;
    }

    .time-home-container {
        padding: 0 20px;
    }

    .time-home-actions {
        flex-direction: column;
    }

    .time-home-link-primary,
    .time-home-link-secondary {
        width: 100%;
        min-width: 0;
    }
}